-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "underscore-util-js",
"version": "1.0.3",
"description": "util-js-library.",
"main": "like-underscore-util.js",
"scripts": {
"minify": "uglifyjs like-underscore-util.js -c \"evaluate=false\" --comments \"/ .*/\" -m",
"build": "npm run minify -- --source-map --source-map-url \" \" -o like-underscore-util-min.js",
"test": "npm run eslint && npm run test-node",
"eslint": "eslint like-underscore-util.js test/*.js",
"test-node": "qunit test/*.js",
"test-karma": "karma start ./karma.config.js",
"coverage": "nyc npm run test-node && nyc report",
"coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Albert-cord/like-underscore-util.js.git"
},
"keywords": [
"like-underscore",
"util"
],
"author": "Albert-cord",
"license": "MIT",
"bugs": {
"url": "https://github.com/Albert-cord/like-underscore-util.js/issues"
},
"homepage": "https://github.com/Albert-cord/like-underscore-util.js#readme",
"dependencies": {},
"devDependencies": {
"codecov": "^3.5.0",
"coveralls": "^3.0.4",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-qunit": "^3.1.2",
"nyc": "^14.1.1",
"qunit": "^2.9.2",
"uglifyjs": "^2.4.11"
},
"files": [
"like-underscore-util.js",
"like-underscore-util-min.js",
"like-underscore-util-min.js.map"
]
}