forked from hoodiehq/hoodie-connection-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "@hoodie/connection-status",
"description": "hoodie.connectionStatus API for the browser",
"main": "client/index.js",
"browser": "client/index.js",
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "browserify client/index.js --standalone=ConnectionStatus > dist/hoodie-connection-status.js",
"postbuild": "uglifyjs dist/hoodie-connection-status.js -mc > dist/hoodie-connection-status.min.js",
"pretest": "standard",
"test": "npm run -s test:node | tap-spec",
"test:node": "node tests",
"test:watch": "gaze 'clear && node tests | tap-min' 'tests/**/*.js' 'client/*.js' 'lib/**/*.js'",
"test:coverage": "istanbul cover tests",
"test:coverage:upload": "istanbul-coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-connection-status.git"
},
"keywords": [
"hoodie",
"log",
"browser"
],
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-connection-status/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-connection-status#readme",
"dependencies": {
"browser-supports-log-styles": "^1.1.4",
"humble-localstorage": "^1.4.2",
"lie": "^3.0.1",
"nets": "^3.2.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"gaze-cli": "^0.2.0",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.0",
"istanbul-coveralls": "^1.0.3",
"lolex": "^1.3.2",
"mkdirp": "^0.5.1",
"nock": "^8.0.0",
"rimraf": "^2.4.3",
"semantic-release": "^4.3.5",
"simple-mock": "^0.7.0",
"standard": "^6.0.4",
"tap-min": "^1.0.0",
"tap-spec": "^4.1.0",
"tape": "^4.2.2",
"uglify-js": "^2.6.1"
},
"publishConfig": {
"access": "public"
}
}