-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
{
"name": "@hoodie/admin-client",
"description": "Client Admin API for the Hoodie server",
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie-admin-client/issues"
},
"dependencies": {
"@hoodie/account-client": "5.1.1",
"async-get-set-store": "^1.0.2",
"before-after-hook": "^1.0.1",
"lie": "^3.1.1",
"lodash": "^4.11.1",
"nets": "^3.2.0"
},
"devDependencies": {
"browserify": "^14.1.0",
"humble-localstorage": "^1.4.2",
"istanbul": "^0.4.1",
"istanbul-coveralls": "^1.0.3",
"mkdirp": "^0.5.1",
"nock": "^9.0.9",
"npm-run-all": "^4.0.0",
"rimraf": "^2.4.3",
"semantic-release": "^7.0.1",
"simple-mock": "^0.8.0",
"standard": "^10.0.0",
"tap-spec": "^4.1.0",
"tape": "^4.4.0",
"uglify-js": "^3.0.0",
"uglifyify": "^4.0.1"
},
"homepage": "https://github.com/hoodiehq/hoodie-admin-client#readme",
"keywords": [
"hoodie",
"nobackend",
"offlinefirst"
],
"license": "Apache-2.0",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie-admin-client.git"
},
"scripts": {
"build": "npm-run-all -p build:raw:*",
"build:dev": "npm-run-all prebuild build:raw:dev",
"build:min": "npm-run-all prebuild build:raw:min",
"build:raw:dev": "browserify -s HoodieAdmin index.js -o dist/hoodie-admin.js",
"build:raw:min": "browserify -s HoodieAdmin -g uglifyify index.js | uglifyjs -c -o dist/hoodie-admin.min.js",
"prebuild": "rimraf dist && mkdirp dist",
"presemantic-release": "npm run -s build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"pretest": "standard",
"test": "npm run -s test:node | tap-spec",
"test:coverage": "istanbul cover tape test/{integration,unit}/*-test.js",
"test:coverage:upload": "istanbul-coveralls",
"test:node": "tape test/{integration,unit}/*-test.js"
}
}