-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "@hoodie/log",
"description": "log API for the browser",
"main": "client/index.js",
"browser": "client/index.js",
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "browserify client/index.js --standalone=Log > dist/hoodie-log.js",
"postbuild": "uglifyjs dist/hoodie-log.js -mc > dist/hoodie-log.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"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-log.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-log/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-log#readme",
"dependencies": {
"browser-supports-log-styles": "^1.1.3"
},
"devDependencies": {
"browserify": "^13.0.0",
"gaze-cli": "^0.2.0",
"istanbul": "^0.4.0",
"istanbul-coveralls": "^1.0.3",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.4",
"semantic-release": "^6.2.1",
"simple-mock": "^0.7.0",
"standard": "^8.0.0",
"tap-min": "^1.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"uglify-js": "^2.6.1"
},
"publishConfig": {
"access": "public"
}
}