forked from binary-com/binary-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
148 lines (148 loc) · 4.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "binary-bot",
"version": "8.4.6",
"description": "Visual automation for binary.com",
"bin": {
"bot": "lib/index.js"
},
"babel": {
"babelrc": false,
"presets": [
"react",
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"ios_saf >= 8",
"not IE <= 10",
"chrome >= 49",
"firefox >= 49",
"> 1%"
]
},
"loose": true,
"useBuiltIns": true
}
]
],
"plugins": [
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
],
[
"transform-class-properties",
{
"useBuiltIns": true
}
]
]
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/.jest",
"testPathIgnorePatterns": [
"/node_modules/",
"tools.js"
]
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"scripts": {
"start": "gulp watch",
"test": "eslint src/ && jest -w 10 --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",
"build": "webpack --config webpack.config.cli.js",
"prepublishOnly": "npm run build",
"precommit": "lint-staged"
},
"author": "Amin Marashi",
"license": "MIT",
"devDependencies": {
"app-module-path": "^2.2.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.0",
"binary-charts": "^9.2.6",
"binary-common-utils": "^7.0.0",
"binary-indicators": "^1.5.2",
"binary-live-api": "^29.0.0",
"binary-utils": "^4.22.0",
"blockly": "google/blockly.git#0785a7b",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"deep-diff": "^0.3.4",
"del": "^2.2.2",
"es6-plato": "^1.0.14",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-binary": "^1.0.2",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"file-saver": "^1.3.3",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.4.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.5.0",
"gulp-watch": "^4.3.11",
"husky": "^0.13.4",
"i18next-scanner": "^1.8.0",
"immutable": "^3.8.1",
"jest": "^19.0.2",
"jquery": "3.2.1",
"jquery-ui": "^1.12.1",
"jquery-ui-css": "^1.11.4",
"js-interpreter": "^1.4.6",
"json2csv": "^3.9.1",
"lint-staged": "^3.6.1",
"loader-utils": "^1.1.0",
"notifyjs-browser": "^0.4.2",
"prettier-eslint-cli": "^4.1.1",
"prop-types": "^15.5.8",
"react": "^15.6.1",
"react-data-grid": "^2.0.49",
"react-dom": "^15.6.1",
"react-joyride": "^1.10.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"sha1": "^1.1.1",
"trackjs": "^2.8.2",
"vinyl-paths": "^2.1.0",
"webpack": "^2.6.1",
"webpack-stream": "^3.2.0",
"ws": "^2.2.2"
},
"dependencies": {
"commander": "^2.9.0",
"concat-stream": "^1.6.0"
}
}