forked from binary-com/binary-bot
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.74 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.74 KB
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
{
"name": "binary-bot",
"version": "2.3.2",
"description": "Visual automation for binary.com",
"main": "src/bot.js",
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [],
"ignore": [
"./src/common/mock/*"
]
},
"scripts": {
"start": "gulp watch",
"test": "eslint src/ && jest",
"test:full": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"gen-beta": "git checkout beta; npm prune ; npm install ; gulp build-min; rm -rf beta; mkdir beta ; cp -r www/ beta/beta; git checkout -- src",
"gen-translation": "git checkout translation; npm prune ; npm install ; gulp build-min; rm -rf translation; mkdir translation ; cp -r www/ translation/translation; git checkout -- src",
"deploy": "git checkout master ; npm prune ; npm install ; gulp deploy",
"deploy-all": "npm run gen-beta; npm run gen-translation; npm run deploy"
},
"author": "Amin Marashi",
"license": "MIT",
"devDependencies": {
"app-module-path": "^2.2.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"binary-charts": "^9.2.6",
"binary-common-utils": "^6.0.1",
"binary-indicators": "^1.5.2",
"binary-live-api": "^28.1.0",
"binary-mock-websocket": "^4.1.1",
"blockly": "google/blockly.git#0785a7b",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"deep-diff": "^0.3.4",
"del": "^2.2.2",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"file-saver": "^1.3.3",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.0.2",
"gulp-concat-css": "^2.3.0",
"gulp-concat-util": "^0.5.5",
"gulp-connect": "^5.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-mustache-plus": "^1.0.1",
"gulp-open": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-rev": "^7.1.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-watch": "^4.3.11",
"i18next-scanner": "^1.5.1",
"immutable": "^3.8.1",
"jest-cli": "^18.1.0",
"jquery": "3.1.1",
"json-loader": "^0.5.4",
"loader-utils": "^0.2.16",
"lz-string": "^1.4.4",
"mocha": "^3.2.0",
"notifyjs-browser": "^0.4.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-joyride": "^1.10.1",
"sha1": "^1.1.1",
"trackjs": "^2.6.3",
"vinyl-paths": "^2.1.0",
"webpack": "^1.14.0",
"webpack-stream": "^3.2.0"
}
}