Files
lodash/package.json
Benjamin Tan bcd0610069 Cleanup package.json and CONTRIBUTING.md.
The master branch has been in flux for a pretty long time, so leaving
the broken npm scripts and messages in CONTRIBUTING.md doesn't make
sense and has been confusing to contributors. This commit removes broken
npm scripts and removes all unnecessary dependencies for now.
2020-12-21 21:49:59 +08:00

24 lines
491 B
JSON

{
"name": "lodash",
"version": "5.0.0",
"license": "MIT",
"private": true,
"main": "lodash.js",
"engines": {
"node": ">=4.0.0"
},
"sideEffects": false,
"scripts": {
"style": "eslint *.js .internal/**/*.js",
"test": "mocha -r esm test/*.test.js",
"validate": "npm run style && npm run test"
},
"devDependencies": {
"mocha": "^5.2.0",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.22.1",
"lodash": "4.17.20",
"esm": "^3.2.25"
}
}