-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 807 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 807 Bytes
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
{
"name": "network-status",
"version": "1.0.2",
"description": "Monitoring for network status and for re-connect",
"keywords": "network monitor",
"repository": "https://github.com/mybuilder/network-status",
"main": "lib/networkStatus.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register test/networkStatusTest.js",
"build": "babel src --out-dir lib",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"publish-patch": "npm version patch && npm publish"
},
"author": "Sten",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"es6-promise": "^3.0.2",
"expect.js": "^0.3.1",
"mocha": "^2.3.3",
"xmlhttprequest": "^1.8.0"
}
}