-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "rijs.core",
"version": "1.2.6",
"main": "index",
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"description": "Ripple Core",
"repository": {
"type": "git",
"url": "git://github.com/rijs/core.git"
},
"scripts": {
"build": "npm run rollup && npm run minify && npm run gzip",
"rollup": "rollup -c",
"minify": "uglifyjs client.bundle.js -m -c keep_fargs=false > client.min.js",
"gzip": "gzip -c client.min.js > client.min.js.gz",
"test": "tap *.test.js",
"coverage": "tap *.test.js --coverage-report=lcov",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"browser": {
"colors": false
},
"license": "pemrouz.mit-license.org",
"devDependencies": {
"rollup": "^0.58.1",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"tap": "^11.1.4",
"uglify-es": "^3.3.10"
},
"dependencies": {
"colors": "^1.1.0",
"utilise": "^2.3.5"
}
}