-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "underscore",
"description": "javaScript's functional programming helper library available for ES6 and umd usage.",
"homepage": "http://underscorejs.org",
"keywords": [
"util",
"functional",
"helper",
"server",
"client",
"es6",
"es2015",
"browser"
],
"author": "Jeremy Ashkenas <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/tnga/underscore-es.git"
},
"main": "underscore.js",
"module": "src/_index.js",
"jsnext:main": "src/_index.js",
"version": "1.9.8",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-preset-es2015-rollup": "^1.2.0",
"coveralls": "^2.11.2",
"docco": "*",
"eslint": "1.10.x",
"gzip-size-cli": "^1.0.0",
"karma": "^0.13.13",
"karma-qunit": "~0.1.4",
"nyc": "^2.1.3",
"pretty-bytes-cli": "^1.0.0",
"qunit-cli": "~0.2.0",
"qunitjs": "^1.18.0",
"rollup": "^0.34.10",
"rollup-plugin-babel": "^2.6.1",
"uglify-js": "2.4.x"
},
"babel": {
"presets": [
"es2015-rollup"
]
},
"scripts": {
"test": "npm run test-node && npm run lint",
"coverage": "nyc npm run test-node && nyc report",
"coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint underscore.js test/*.js",
"test-node": "qunit-cli test/*.js",
"test-browser": "npm i karma-phantomjs-launcher && karma start",
"rollup": "rollup -c",
"grouping": "./grouptools",
"minify": "uglifyjs underscore.js -c \"evaluate=false\" --comments \"/ .*/\" -m",
"build": "npm run rollup && npm run minify -- --source-map underscore-min.map --source-map-url \" \" -o underscore-min.js",
"doc": "docco underscore.js",
"weight": "npm run minify | gzip-size | pretty-bytes"
},
"license": "MIT",
"files": [
"underscore.js",
"underscore.js.map",
"underscore-min.js",
"underscore-min.map"
]
}