forked from ZenyWay/cryptobox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"name": "cryptobox",
"version": "0.0.2",
"description": "zero-knowledge, offline-first, replicating, distributed document storage for web, mobile, desktop and node apps",
"main": "dist/index.js",
"scripts": {
"prebuild": "mkdirp dist && rimraf dist/*",
"build": "cpx src/**/*.ts dist && tsc -p src --outDir dist",
"postinstall": "typings install",
"pretest": "mkdirp spec/reports && rimraf spec/reports/*",
"test": "karma start --single-run",
"test:debug": "karma start --no-single-run",
"test:coverage": "npm run pretest && karma start karma-coverage.conf.js --single-run && remap-istanbul -i spec/reports/coverage/chrom*/coverage.json -o spec/reports/coverage -t html && http-server -c-1 -o -p 8888 spec/reports/coverage",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenyway/cryptobox.git"
},
"keywords": [
"zero-knowledge",
"crypto",
"webcrypto",
"openpgp",
"offline-first",
"pouchdb",
"couchdb",
"replication",
"sync",
"synchronization"
],
"author": {
"name": "Stephane M. Catala",
"email": "stephane@zenyway.com"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/zenyway/cryptobox/issues"
},
"homepage": "https://github.com/zenyway/cryptobox#readme",
"dependencies": {
"bluebird": "^3.4.0",
"object-assign": "^4.1.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-istanbul": "^2.0.0",
"concurrently": "^2.1.0",
"cpx": "^1.3.1",
"eslint": "^2.11.1",
"http-server": "^0.9.0",
"istanbul": "^0.4.3",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.0",
"karma-junit-reporter": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"mkdirp": "^0.5.1",
"remap-istanbul": "^0.6.4",
"rimraf": "^2.5.2",
"tsify": "^0.16.0",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"watchify": "^3.7.0"
}
}