-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.7 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
{
"name": "tokend-wallet-js-sdk",
"version": "0.1.2",
"private": false,
"dependencies": {
"tokend-js-base": "https://github.com/tokend/js-base.git",
"axios": "0.16.2",
"bluebird": "2.11.0",
"bs58": "2.0.1",
"camel-case": "1.0.2",
"lodash": "2.4.2",
"ripemd160": "0.2.1",
"sjcl": "git+https://github.com/stellar/sjcl.git",
"sjcl-scrypt": "git+https://github.com/stellar/sjcl-scrypt.git",
"superagent": "0.20.0",
"thirty-two": "0.0.2",
"tweetnacl": "0.11.2"
},
"devDependencies": {
"chai": "1.9.2",
"chai-as-promised": "4.1.1",
"body-parser": "1.18.3",
"express": "4.16.3",
"ghooks": "0.2.5",
"gulp": "3.6.2",
"gulp-coveralls": "0.1.4",
"gulp-git": "0.5.6",
"gulp-rimraf": "0.1.1",
"gulp-load-plugins": "0.5.3",
"gulp-rename": "1.2.3",
"gulp-uglify": "0.3.2",
"gulp-webpack": "0.4.1",
"istanbul": "0.3.22",
"mocha": "1.17.1",
"notp": "2.0.3",
"opn": "1.0.2",
"run-sequence": "0.3.7",
"webpack": "1.4.15",
"zuul": "1.16.5"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha --recursive --bail --reporter spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive --bail --reporter spec && opn coverage/lcov-report/index.html",
"build": "gulp build"
},
"config": {
"ghooks": {
"pre-commit": "yarn build && git add ."
}
},
"repository": {
"type": "git",
"url": "https://github.com/tokend/wallet-js-sdk.git"
}
}