mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
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.
24 lines
491 B
JSON
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"
|
|
}
|
|
}
|