forked from stellar-deprecated/stellar-wallet-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "stellar-wallet-js-sdk",
"version": "0.0.0",
"private": false,
"keywords": [
"stellar"
],
"dependencies": {
"bs58": "~2.0.0",
"bluebird": "~2.3.4",
"camel-case": "~1.0.2",
"lodash": "~2.4.1",
"ripemd160": "~0.2.0",
"sjcl": "git+https://github.com/stellar/sjcl.git",
"sjcl-scrypt": "git+https://github.com/stellar/sjcl-scrypt.git",
"stellar-lib": "0.9.6",
"superagent": "~0.20.0",
"thirty-two": "~0.0.2",
"tweetnacl": "^0.11.2"
},
"devDependencies": {
"chai": "~1.9.0",
"chai-as-promised": "~4.1.1",
"body-parser": "^1.9.2",
"express": "^4.9.8",
"ghooks": "^0.2.2",
"gulp": "~3.6.0",
"gulp-coveralls": "^0.1.3",
"gulp-git": "~0.5.3",
"gulp-rimraf": "~0.1.0",
"gulp-load-plugins": "~0.5.0",
"gulp-rename": "~1.2.0",
"gulp-uglify": "~0.3.1",
"gulp-webpack": "~0.4.1",
"istanbul": "~0.3.2",
"mocha": "~1.17.1",
"notp": "^2.0.2",
"opn": "~1.0.0",
"run-sequence": "~0.3.6",
"webpack": "~1.4.4",
"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"
},
"repository": {
"type" : "git",
"url" : "https://github.com/stellar/stellar-wallet-js-sdk"
},
"config": {
"ghooks": {
"pre-commit": "gulp hooks:precommit"
}
}
}