-
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.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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.sync",
"version": "2.3.5",
"main": "server",
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"repository": {
"type": "git",
"url": "git://github.com/rijs/sync.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 --cov --coverage-report=lcov",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"browser": "client",
"license": "pemrouz.mit-license.org",
"devDependencies": {
"puppeteer": "^0.12.0",
"rijs.core": "^1.2.5",
"rijs.data": "^2.2.4",
"rijs.fn": "^1.2.6",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-replace": "^2.0.0",
"tap": "^10.7.3",
"uglify-es": "^3.3.10",
"utilise.emitterify": "^1.7.2"
},
"dependencies": {
"buble": "github:pemrouz/buble",
"express": "^4.14.0",
"lru_map": "^0.3.3",
"platform": "^1.3.4",
"utilise": "^2.3.5",
"xrs": "^1.2.2"
}
}