-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.49 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "keplerjs",
"version": "1.0.0",
"description": "KeplerJS Javascript library for interacting with Bench Network's Kepler Service.",
"main": "lib/index.js",
"scripts": {
"test": "babel-node ./node_modules/.bin/gulp test",
"docs": "jsdoc ./src/ -d docs/ -r ./docs/readme.md",
"preversion": "gulp test",
"version": "gulp build",
"postversion": "git push && git push --tags"
},
"keywords": [
"kepler",
"keplerjs",
"bench-network",
"benOS",
"benchcore",
"neutron"
],
"repository": {
"type": "git",
"url": "https://github.com/benchlab/keplerjs.git"
},
"engines": {
"node": ">=0.10 <=4"
},
"author": "Jared Rice Sr. <jared@benchx.io>",
"license": "BENCH",
"bugs": {
"url": "https://github.com/benchlab/keplerjs/issues"
},
"homepage": "https://github.com/benchlab/keplerjs",
"devDependencies": {
"babel": "~5.8.23",
"babel-core": "~5.8.25",
"babel-istanbul": "^0.3.20",
"babel-loader": "~5.3.2",
"body-parser": "^1.12.2",
"chai": "^2.2.0",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.4",
"express": "^4.9.8",
"ghooks": "^0.3.0",
"gulp": "^3.8.11",
"gulp-babel": "^4.0.1",
"gulp-coveralls": "^0.1.3",
"gulp-develop-server": "^0.4.2",
"gulp-git": "~0.5.3",
"gulp-insert": "^0.5.0",
"gulp-istanbul": "^0.10.1",
"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",
"isparta": "^3.1.0",
"istanbul": "~0.3.2",
"jsdoc": "3.5.3",
"jshint-stylish": "^1.0.1",
"karma": "^0.13.2",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sauce-launcher": "^1.1.0",
"karma-sinon": "^1.0.4",
"karma-sinon-chai": "^0.3.0",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"minami": "^1.1.1",
"mocha": "~1.17.1",
"run-sequence": "^1.0.2",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"webpack": "^1.13.2"
},
"dependencies": {
"urijs": "1.18.4",
"axios": "^0.12.0",
"bluebird": "^3.1.5",
"es6-promise": "^3.0.2",
"event-source-polyfill": "0.0.7",
"eventsource": "^0.2.1",
"lodash": "^4.0.1",
"keplerbase": "1.0.0",
"toml": "^2.3.0"
}
}