forked from enmasseio/timesync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
42
43
44
45
46
47
{
"name": "timesync",
"version": "1.0.5",
"description": "Time synchronization between peers",
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
"main": "./lib/timesync.js",
"license": "MIT",
"keywords": [
"time",
"synchronization",
"ntp",
"client",
"server",
"isomorphic"
],
"repository": {
"type": "git",
"url": "git://github.com/enmasseio/timesync.git"
},
"dependencies": {
"debug": "3.1.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babelify": "8.0.0",
"body-parser": "1.18.2",
"browserify": "16.1.0",
"express": "4.16.2",
"promise": "8.0.1",
"socket.io": "2.0.4",
"uglify-js": "3.3.10",
"watch": "1.0.2"
},
"scripts": {
"bundle": "mkdir -p dist; browserify src/timesync.js -t babelify -s timesync -o dist/timesync.js --bare",
"minify": "uglifyjs dist/timesync.js -o dist/timesync.min.js",
"compile": "babel -q src/ -d lib/",
"build": "npm run bundle; npm run minify; npm run compile",
"watch": "watch 'npm run build' src"
},
"browserify": {
"transform": [
"babelify"
]
}
}