-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.46 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": "min-util",
"version": "3.6.1",
"description": "A minimalist JavaScript Util library with a largely Lodash-compatible API.",
"main": "index.js",
"scripts": {
"test-cover": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test",
"test-sauce": "karma start karma.sauce.config.js",
"test-node": "mocha test/index",
"test-all": "npm run test-node && npm run test-sauce && npm run test-cover",
"test": "npm run test-node",
"build": "rm -rf dist/* && webpack",
"build-test": "NODE_ENV=test webpack",
"build-all": "npm run build-release && npm run build-test",
"dev": "NODE_ENV=development webpack-dev-server",
"dev-test": "NODE_ENV=test webpack-dev-server",
"pregit": "npm run test-node && npm run build-all && npm run readme",
"readme": "pretty-readme"
},
"author": "chunpu",
"license": "ISC",
"dependencies": {
"cou": "^1.4.0"
},
"devDependencies": {
"istanbul": "^0.3.6",
"karma": "^0.13.15",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.2",
"karma-sauce-launcher": "^0.3.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.1.0",
"phantomjs": "^1.9.19",
"webpack": "^1.12.9"
},
"repository": {
"type": "git",
"url": "https://github.com/chunpu/min-util.git"
},
"keywords": [
"util",
"lib"
],
"bugs": {
"url": "https://github.com/chunpu/min-util/issues"
},
"homepage": "https://github.com/chunpu/min-util#readme"
}