-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
75 lines (75 loc) · 2.26 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@hoodie/account-client",
"version": "0.0.0-semantically-released",
"description": "Account client API for the browser",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "npm-run-all -p build:*",
"build:client": "browserify -s Account index.js > dist/hoodie-account-client.js",
"postbuild:client": "uglifyjs dist/hoodie-account-client.js -mc > dist/hoodie-account-client.min.js",
"presemantic-release": "npm run -s build",
"semantic-release": "semantic-release",
"pretest": "standard",
"test": "npm run -s test:node | tap-spec",
"pretest:browser:cloud": "npm run -s build",
"pretest:browser:local": "npm run -s build",
"test:coverage": "istanbul cover tape test/{integration,unit}/*-test.js",
"test:coverage:upload": "istanbul-coveralls",
"test:node": "tape test/{integration,unit}/*-test.js",
"test:watch": "gaze 'clear && tape test/{integration,unit}/*-test.js | tap-min' index.js test/**/*.js lib/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-account-client.git"
},
"keywords": [
"account",
"client",
"browser"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-account-client/issues"
},
"homepage": "https://github.com/hoodiehq/hoodie-account-client#readme",
"devDependencies": {
"browserify": "^16.0.0",
"gaze-cli": "^0.2.0",
"humble-localstorage": "^1.4.2",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"lolex": "^2.0.0",
"mkdirp": "^0.5.1",
"nock": "^10.0.0",
"npm-run-all": "^4.0.0",
"rimraf": "^2.4.3",
"semantic-release": "^15.5.0",
"simple-mock": "^0.8.0",
"standard": "^11.0.0",
"tap-min": "^1.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.2.0",
"uglify-js": "^3.0.0"
},
"dependencies": {
"before-after-hook": "^1.0.1",
"async-get-set-store": "^1.0.2",
"lie": "^3.0.1",
"lodash": "^4.0.0",
"nets": "^3.1.0"
},
"standard": {
"ignore": [
"dist/**"
]
},
"gh-pages-deploy": {
"staticpath": "docs/build",
"noprompt": true
},
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"publishConfig": {
"access": "public"
}
}