-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.36 KB
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
{
"name": "rijs.css",
"version": "1.2.4",
"main": "index",
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"repository": {
"type": "git",
"url": "git://github.com/rijs/css.git"
},
"browser": "client",
"scripts": {
"build": "npm run client && npm run rollup && npm run minify && npm run gzip",
"client": "uglifyjs index.js -b -d client=true -c > client.js",
"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": "istanbul 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",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"license": "pemrouz.mit-license.org",
"devDependencies": {
"chai": "*",
"coveralls": "*",
"istanbul": "*",
"mocha": "^5.1.0",
"mocha-lcov-reporter": "*",
"popper": "*",
"rijs.core": "^1.2.3",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"uglify-es": "^3.3.10"
},
"dependencies": {
"djbx": "^1.0.3",
"utilise": "^2.3.3"
}
}