forked from binary-com/binary-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.02 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
{
"name": "binary-bot",
"version": "2.1.0",
"description": "Visual automation for binary.com",
"main": "src/bot.js",
"scripts": {
"test": "./node_modules/.bin/mocha -r ./src/common/mochaHelper.js src/**/__tests__/*.js src/**/**/__tests__/*.js src/**/**/**/__tests__/*.js",
"coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha -- -r ./src/common/mochaHelper.js src/**/__tests__/*.js src/**/**/__tests__/*.js src/**/**/**/__tests__/*.js",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test:full": "npm test && npm run coveralls",
"dev": "gulp watch",
"deploy": "git checkout beta; npm prune ; npm install ; gulp build-min; mkdir beta ; cp -r www/ beta/beta; git checkout -- src; git checkout master ; npm prune ; npm install ; gulp deploy",
"hunspell": "gulp i18n; cd src/common/translations ; node -e \"var en = require('./en'); console.log(JSON.stringify(en));\">en.json; json2po en.json >en.po ; po2txt en.po > en.txt; hunspell -p ../../../known_words.txt en.txt && rm *.po *.txt *.json",
"publish-latest": "npm test && npm version from-git && npm publish"
},
"author": "Amin Marashi",
"license": "MIT",
"dependencies": {
"backbone": "^1.3.3",
"binary-charts": "^7.15.2",
"binary-common-utils": "~1.5.0",
"binary-live-api": "20.5.0",
"blockly": "google/blockly.git#ac0e704c699133e57e8a57bd49a971ce01014535",
"bootstrap": "^3.3.7",
"filesaverjs": "^0.2.2",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-open": "^2.0.0",
"jquery": "2.2.4",
"notifyjs-browser": "^0.4.2",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"sha1": "^1.1.1",
"tourist": "easelinc/tourist.git#a31cf497cc7af8173513ea3f57f760894d5262cb",
"trackjs": "^2.5.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"app-module-path": "^1.1.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"binary-mock-websocket": "~1.3.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"deep-diff": "^0.3.4",
"del": "^2.2.1",
"gulp-clean-css": "^2.0.12",
"gulp-concat-css": "^2.3.0",
"gulp-concat-util": "^0.5.5",
"gulp-gh-pages": "^0.5.4",
"gulp-insert": "^0.5.0",
"gulp-jshint": "^2.0.1",
"gulp-mocha": "^3.0.0",
"gulp-mustache-plus": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-rev": "^7.1.0",
"gulp-uglify": "^2.0.0",
"gulp-watch": "^4.3.9",
"gulp-webpack": "^1.5.0",
"i18next-scanner": "^1.5.0",
"jsdom": "^9.4.2",
"jsdom-global": "^2.0.0",
"jshint": "^2.9.2",
"json-loader": "^0.5.4",
"loader-utils": "^0.2.15",
"lz-string": "^1.4.4",
"mocha": "^3.0.2",
"through2": "^2.0.1",
"underscore": "^1.8.3",
"vinyl-paths": "^2.1.0",
"ws": "^1.1.1",
"xmldom": "^0.1.22"
}
}