forked from stellar/js-stellar-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "stellar-base",
"version": "0.4.2",
"description": "Low level stellar support library",
"main": "lib/index.js",
"scripts": {
"test": "gulp test",
"docs": "./node_modules/.bin/jsdoc ./src/ -d docs/",
"preversion": "gulp test",
"version": "gulp build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/stellar/js-stellar-base.git"
},
"keywords": [
"stellar"
],
"engines": {
"node": ">=0.10 <=0.12 || >=1 <=4"
},
"author": "Scott Fleckenstein <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stellar/js-stellar-base/issues"
},
"homepage": "https://github.com/stellar/js-stellar-base",
"devDependencies": {
"babel": "^4.7.16",
"babel-core": "^4.7.16",
"babel-loader": "^4.3.0",
"chai": "^2.2.0",
"express": "^4.9.8",
"ghooks": "^0.3.0",
"gulp": "^3.8.11",
"gulp-babel": "^4.0.1",
"gulp-coveralls": "^0.1.3",
"gulp-git": "~0.5.3",
"gulp-jshint": "^1.10.0",
"gulp-load-plugins": "^0.9.0",
"gulp-mocha": "^2.0.1",
"gulp-plumber": "^1.0.0",
"gulp-rename": "~1.2.0",
"gulp-rimraf": "~0.1.0",
"gulp-uglify": "~0.3.1",
"gulp-webpack": "^1.3.1",
"istanbul": "~0.3.2",
"jshint-stylish": "^1.0.1",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.3.0",
"karma-webpack": "^1.5.0",
"mocha": "~1.17.1",
"run-sequence": "^1.0.2",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"webpack": "^1.7.3"
},
"dependencies": {
"babel-runtime": "^4.7.16",
"base32.js": "~0.1.0",
"crc": "^3.3.0",
"ed25519": "0.0.4",
"js-xdr": "0.0.11",
"karma": "^0.13.9",
"lodash": "^3.6.0",
"sha.js": "^2.3.6",
"tweetnacl": "^0.13.0"
}
}