-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
64 lines (64 loc) · 1.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "timesync",
"version": "1.0.11",
"description": "Time synchronization between peers",
"author": "Jos de Jong <[email protected]> (https://github.com/josdejong)",
"main": "./lib/timesync.js",
"browser": "./dist/timesync.min.js",
"react-native": "./dist/timesync.min.js",
"license": "MIT",
"keywords": [
"time",
"synchronization",
"ntp",
"client",
"server",
"isomorphic"
],
"repository": {
"type": "git",
"url": "git://github.com/enmasseio/timesync.git"
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.18.13",
"@babel/preset-env": "7.18.10",
"babel-cli": "6.26.0",
"babelify": "10.0.0",
"body-parser": "1.20.0",
"browserify": "17.0.0",
"express": "4.18.1",
"mkdirp": "1.0.4",
"promise": "8.2.0",
"socket.io": "4.5.2",
"uglify-js": "3.17.0",
"watch": "1.0.2"
},
"scripts": {
"bundle": "mkdirp 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 src --out-dir lib",
"build": "npm run bundle && npm run minify && npm run compile",
"watch": "watch \"npm run build\" src",
"prepublishOnly": "npm run build"
},
"browserify": {
"transform": [
"babelify"
]
},
"files": [
"dist",
"docs",
"examples",
"lib",
"server",
"src",
"HISTORY.md",
"LICENSE",
"README.md"
]
}