-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "divvy-lib",
"version": "0.12.4",
"description": "A JavaScript API for interacting with Divvy in Node.js and the browser",
"files": [
"src/js/*",
"bin/*",
"build/*",
"test/*",
"Makefile",
"Gulpfile.js"
],
"main": "src/js/divvy",
"directories": {
"test": "test"
},
"dependencies": {
"async": "0.9.0",
"bignumber.js": "2.0.3",
"extend": "1.2.1",
"lodash": "2.4.1",
"lru-cache": "2.5.0",
"divvy-wallet": "git://github.com/xdv/divvy-wallet.git#2412bcacda00f44ab255e135b66ad076bec82c97",
"ws": "0.7.1"
},
"devDependencies": {
"assert-diff": "1.0.1",
"coveralls": "2.10.0",
"eslint": "0.18.0",
"gulp": "3.8.7",
"gulp-bump": "0.1.13",
"gulp-clean-dest": "0.1.0",
"gulp-concat": "2.4.3",
"gulp-filelog": "0.4.1",
"gulp-flowtype": "0.4.9",
"gulp-plumber": "0.6.6",
"gulp-react": "2.0.0",
"gulp-rename": "1.2.0",
"gulp-uglify": "1.1.0",
"gulp-util": "3.0.3",
"gulp-watch": "4.1.0",
"istanbul": "0.3.5",
"map-stream": "0.1.0",
"mocha": "2.1.0",
"nock": "0.34.1",
"webpack": "1.3.3-beta1",
"yargs": "1.3.1"
},
"scripts": {
"build": "node_modules/.bin/gulp",
"pretest": "node_modules/.bin/gulp concat-sjcl",
"test": "./node_modules/.bin/istanbul test -x build/sjcl.js -x src/js/jsbn/* ./node_modules/mocha/bin/_mocha -- --reporter ${MOCHA_REPORTER:=spec} --timeout 10000 --slow 500 test/*-test.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "if ! [ -f eslintrc ]; then curl -o eslintrc 'https://raw.githubusercontent.com/xdv/javascript-style-guide/master/eslintrc'; fi; eslint --reset -c eslintrc src/js/divvy/*.js",
"perf": "./scripts/perf_test.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/xdv/divvy-lib.git"
},
"readmeFilename": "README.md",
"engines": {
"node": ">=0.10.0"
}
}