blob: 914499d16dece1566af19e30822979d01d844642 [file] [log] [blame]
Matteo Scandolo280dcd32016-05-16 09:59:38 -07001{
2 "name": "lodash",
3 "version": "4.11.2",
4 "license": "MIT",
5 "private": true,
6 "main": "lodash.js",
7 "scripts": {
8 "build": "npm run build:main && npm run build:fp",
9 "build:fp": "node lib/fp/build-dist.js",
10 "build:fp-modules": "node lib/fp/build-modules.js",
11 "build:main": "node lib/main/build-dist.js",
12 "build:main-modules": "node lib/main/build-modules.js",
13 "doc": "node lib/main/build-doc github",
14 "doc:fp": "node lib/fp/build-doc",
15 "doc:site": "node lib/main/build-doc site",
16 "pretest": "npm run build",
17 "style": "npm run style:main && npm run style:fp && npm run style:perf && npm run style:test",
18 "style:fp": "jscs fp/*.js lib/**/*.js",
19 "style:main": "jscs lodash.js",
20 "style:perf": "jscs perf/*.js perf/**/*.js",
21 "style:test": "jscs test/*.js test/**/*.js",
22 "test": "npm run test:main && npm run test:fp",
23 "test:fp": "node test/test-fp",
24 "test:main": "node test/test",
25 "validate": "npm run style && npm run test"
26 },
27 "devDependencies": {
28 "async": "^1.5.2",
29 "benchmark": "^2.1.0",
30 "chalk": "^1.1.3",
31 "codecov.io": "~0.1.6",
32 "coveralls": "^2.11.9",
33 "curl-amd": "~0.8.12",
34 "docdown": "~0.5.1",
35 "dojo": "^1.11.1",
36 "ecstatic": "^1.4.0",
37 "fs-extra": "~0.28.0",
38 "glob": "^7.0.3",
39 "istanbul": "0.4.3",
40 "jquery": "^2.2.3",
41 "jscs": "^3.0.1",
42 "lodash": "4.10.0",
43 "platform": "^1.3.1",
44 "qunit-extras": "^1.5.0",
45 "qunitjs": "~1.23.1",
46 "request": "^2.69.0",
47 "requirejs": "^2.2.0",
48 "sauce-tunnel": "^2.4.0",
49 "uglify-js": "2.6.2",
50 "webpack": "^1.12.15"
51 }
52}