-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.31 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
{
"name": "utilise.emitterify",
"version": "1.8.0",
"main": "index.js",
"scripts": {
"build": "rollup -c && npm run minify && npm run gzip",
"minify": "uglifyjs client.bundle.js -m -c keep_fargs=false -o client.min.js",
"gzip": "gzip -c client.min.js > client.min.js.gz",
"test": "node --trace-warnings ./node_modules/istanbul/lib/cli.js test ./node_modules/mocha/bin/_mocha --report html -- -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage",
"cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec"
},
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"license": "pemrouz.mit-license.org",
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "0.0.2",
"uglify-es": "^3.1.1",
"rollup": "*",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"utilise.by": "0.0.2",
"utilise.clone": "0.0.2",
"utilise.delay": "0.0.1",
"utilise.key": "0.0.9",
"utilise.time": "0.0.4",
"utilise.update": "*"
},
"dependencies": {
"utilise.def": "*",
"utilise.flatten": "0.0.3",
"utilise.promise": "^1.0.0"
}
}