|
1 | 1 | {
|
2 |
| - "name": "binary-bot", |
3 |
| - "version": "8.4.5", |
4 |
| - "description": "Visual automation for binary.com", |
5 |
| - "bin": { |
6 |
| - "bot": "lib/index.js" |
7 |
| - }, |
8 |
| - "babel": { |
9 |
| - "babelrc": false, |
10 |
| - "presets": [ |
11 |
| - "react", |
12 |
| - [ |
13 |
| - "env", |
14 |
| - { |
15 |
| - "targets": { |
16 |
| - "browsers": [ |
17 |
| - "last 2 versions", |
18 |
| - "ios_saf >= 8", |
19 |
| - "not IE <= 10", |
20 |
| - "chrome >= 49", |
21 |
| - "firefox >= 49", |
22 |
| - "> 1%" |
23 |
| - ] |
24 |
| - }, |
25 |
| - "loose": true, |
26 |
| - "useBuiltIns": true |
27 |
| - } |
| 2 | + "name": "binary-bot", |
| 3 | + "version": "8.4.5", |
| 4 | + "description": "Visual automation for binary.com", |
| 5 | + "bin": { |
| 6 | + "bot": "lib/index.js" |
| 7 | + }, |
| 8 | + "babel": { |
| 9 | + "babelrc": false, |
| 10 | + "presets": [ |
| 11 | + "react", |
| 12 | + [ |
| 13 | + "env", |
| 14 | + { |
| 15 | + "targets": { |
| 16 | + "browsers": [ |
| 17 | + "last 2 versions", |
| 18 | + "ios_saf >= 8", |
| 19 | + "not IE <= 10", |
| 20 | + "chrome >= 49", |
| 21 | + "firefox >= 49", |
| 22 | + "> 1%" |
28 | 23 | ]
|
29 |
| - ], |
30 |
| - "plugins": [ |
31 |
| - [ |
32 |
| - "transform-object-rest-spread", |
33 |
| - { |
34 |
| - "useBuiltIns": true |
35 |
| - } |
36 |
| - ], |
37 |
| - [ |
38 |
| - "transform-class-properties", |
39 |
| - { |
40 |
| - "useBuiltIns": true |
41 |
| - } |
42 |
| - ] |
43 |
| - ] |
44 |
| - }, |
45 |
| - "jest": { |
46 |
| - "setupTestFrameworkScriptFile": "<rootDir>/.jest", |
47 |
| - "testPathIgnorePatterns": ["/node_modules/", "tools.js"] |
48 |
| - }, |
49 |
| - "lint-staged": { |
50 |
| - "*.js": ["prettier-eslint --write", "git add"] |
51 |
| - }, |
52 |
| - "scripts": { |
53 |
| - "start": "gulp watch", |
54 |
| - "test": "eslint src/ && jest -w 10", |
55 |
| - "test:full": "jest -w 10 --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", |
56 |
| - "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", |
57 |
| - "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", |
58 |
| - "deploy": "git checkout master ; npm prune ; npm install ; gulp deploy", |
59 |
| - "deploy-all": "npm run gen-beta; npm run gen-translation; npm run deploy", |
60 |
| - "build": "webpack --config webpack.config.cli.js", |
61 |
| - "prepublish": "npm run build", |
62 |
| - "precommit": "lint-staged" |
63 |
| - }, |
64 |
| - "author": "Amin Marashi", |
65 |
| - "license": "MIT", |
66 |
| - "devDependencies": { |
67 |
| - "app-module-path": "^2.2.0", |
68 |
| - "babel-cli": "^6.24.0", |
69 |
| - "babel-core": "^6.25.0", |
70 |
| - "babel-eslint": "^7.2.1", |
71 |
| - "babel-jest": "^19.0.0", |
72 |
| - "babel-loader": "^6.4.1", |
73 |
| - "babel-plugin-transform-class-properties": "^6.23.0", |
74 |
| - "babel-plugin-transform-object-rest-spread": "^6.23.0", |
75 |
| - "babel-polyfill": "^6.23.0", |
76 |
| - "babel-preset-env": "^1.5.2", |
77 |
| - "babel-preset-react": "^6.23.0", |
78 |
| - "babel-register": "^6.24.0", |
79 |
| - "binary-charts": "^9.2.6", |
80 |
| - "binary-common-utils": "^6.0.6", |
81 |
| - "binary-indicators": "^1.5.2", |
82 |
| - "binary-live-api": "^28.2.3", |
83 |
| - "binary-utils": "^4.22.0", |
84 |
| - "blockly": "google/blockly.git#0785a7b", |
85 |
| - "chai": "^3.5.0", |
86 |
| - "coveralls": "^2.12.0", |
87 |
| - "deep-diff": "^0.3.4", |
88 |
| - "del": "^2.2.2", |
89 |
| - "es6-plato": "^1.0.14", |
90 |
| - "eslint": "^3.18.0", |
91 |
| - "eslint-config-airbnb": "^14.1.0", |
92 |
| - "eslint-config-binary": "^1.0.2", |
93 |
| - "eslint-config-prettier": "^1.7.0", |
94 |
| - "eslint-plugin-import": "^2.2.0", |
95 |
| - "eslint-plugin-jsx-a11y": "^4.0.0", |
96 |
| - "eslint-plugin-react": "^6.10.3", |
97 |
| - "file-saver": "^1.3.3", |
98 |
| - "gulp": "^3.9.1", |
99 |
| - "gulp-clean-css": "^3.4.2", |
100 |
| - "gulp-concat-css": "^2.3.0", |
101 |
| - "gulp-concat-util": "^0.5.5", |
102 |
| - "gulp-connect": "^5.0.0", |
103 |
| - "gulp-gh-pages": "^0.5.4", |
104 |
| - "gulp-mustache-plus": "^1.0.1", |
105 |
| - "gulp-open": "^2.0.0", |
106 |
| - "gulp-rename": "^1.2.2", |
107 |
| - "gulp-rev": "^7.1.2", |
108 |
| - "gulp-sass": "^3.1.0", |
109 |
| - "gulp-sourcemaps": "^2.5.0", |
110 |
| - "gulp-watch": "^4.3.11", |
111 |
| - "husky": "^0.13.4", |
112 |
| - "i18next-scanner": "^1.8.0", |
113 |
| - "immutable": "^3.8.1", |
114 |
| - "jest": "^19.0.2", |
115 |
| - "jquery": "3.2.1", |
116 |
| - "jquery-ui": "^1.12.1", |
117 |
| - "jquery-ui-css": "^1.11.4", |
118 |
| - "js-interpreter": "^1.4.6", |
119 |
| - "json2csv": "^3.9.1", |
120 |
| - "lint-staged": "^3.6.1", |
121 |
| - "loader-utils": "^1.1.0", |
122 |
| - "notifyjs-browser": "^0.4.2", |
123 |
| - "prettier-eslint-cli": "^4.1.1", |
124 |
| - "prop-types": "^15.5.8", |
125 |
| - "react": "^15.6.1", |
126 |
| - "react-data-grid": "^2.0.49", |
127 |
| - "react-dom": "^15.6.1", |
128 |
| - "react-joyride": "^1.10.1", |
129 |
| - "redux": "^3.6.0", |
130 |
| - "redux-thunk": "^2.2.0", |
131 |
| - "sha1": "^1.1.1", |
132 |
| - "trackjs": "^2.8.2", |
133 |
| - "vinyl-paths": "^2.1.0", |
134 |
| - "webpack": "^2.6.1", |
135 |
| - "webpack-stream": "^3.2.0", |
136 |
| - "ws": "^2.2.2" |
137 |
| - }, |
138 |
| - "dependencies": { |
139 |
| - "commander": "^2.9.0", |
140 |
| - "concat-stream": "^1.6.0" |
141 |
| - } |
| 24 | + }, |
| 25 | + "loose": true, |
| 26 | + "useBuiltIns": true |
| 27 | + } |
| 28 | + ] |
| 29 | + ], |
| 30 | + "plugins": [ |
| 31 | + [ |
| 32 | + "transform-object-rest-spread", |
| 33 | + { |
| 34 | + "useBuiltIns": true |
| 35 | + } |
| 36 | + ], |
| 37 | + [ |
| 38 | + "transform-class-properties", |
| 39 | + { |
| 40 | + "useBuiltIns": true |
| 41 | + } |
| 42 | + ] |
| 43 | + ] |
| 44 | + }, |
| 45 | + "jest": { |
| 46 | + "setupTestFrameworkScriptFile": "<rootDir>/.jest", |
| 47 | + "testPathIgnorePatterns": [ |
| 48 | + "/node_modules/", |
| 49 | + "tools.js" |
| 50 | + ] |
| 51 | + }, |
| 52 | + "lint-staged": { |
| 53 | + "*.js": [ |
| 54 | + "prettier-eslint --write", |
| 55 | + "git add" |
| 56 | + ] |
| 57 | + }, |
| 58 | + "scripts": { |
| 59 | + "start": "gulp watch", |
| 60 | + "test": "eslint src/ && jest -w 10", |
| 61 | + "test:full": "jest -w 10 --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", |
| 62 | + "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", |
| 63 | + "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", |
| 64 | + "deploy": "git checkout master ; npm prune ; npm install ; gulp deploy", |
| 65 | + "deploy-all": "npm run gen-beta; npm run gen-translation; npm run deploy", |
| 66 | + "build": "webpack --config webpack.config.cli.js", |
| 67 | + "prepublish": "npm run build", |
| 68 | + "precommit": "lint-staged" |
| 69 | + }, |
| 70 | + "author": "Amin Marashi", |
| 71 | + "license": "MIT", |
| 72 | + "devDependencies": { |
| 73 | + "app-module-path": "^2.2.0", |
| 74 | + "babel-cli": "^6.24.0", |
| 75 | + "babel-core": "^6.25.0", |
| 76 | + "babel-eslint": "^7.2.1", |
| 77 | + "babel-jest": "^19.0.0", |
| 78 | + "babel-loader": "^6.4.1", |
| 79 | + "babel-plugin-transform-class-properties": "^6.23.0", |
| 80 | + "babel-plugin-transform-object-rest-spread": "^6.23.0", |
| 81 | + "babel-polyfill": "^6.23.0", |
| 82 | + "babel-preset-env": "^1.5.2", |
| 83 | + "babel-preset-react": "^6.23.0", |
| 84 | + "babel-register": "^6.24.0", |
| 85 | + "binary-charts": "^9.2.6", |
| 86 | + "binary-common-utils": "^6.0.6", |
| 87 | + "binary-indicators": "^1.5.2", |
| 88 | + "binary-live-api": "^28.2.3", |
| 89 | + "binary-utils": "^4.22.0", |
| 90 | + "blockly": "google/blockly.git#0785a7b", |
| 91 | + "bootstrap": "^3.3.7", |
| 92 | + "chai": "^3.5.0", |
| 93 | + "coveralls": "^2.12.0", |
| 94 | + "deep-diff": "^0.3.4", |
| 95 | + "del": "^2.2.2", |
| 96 | + "es6-plato": "^1.0.14", |
| 97 | + "eslint": "^3.18.0", |
| 98 | + "eslint-config-airbnb": "^14.1.0", |
| 99 | + "eslint-config-binary": "^1.0.2", |
| 100 | + "eslint-config-prettier": "^1.7.0", |
| 101 | + "eslint-plugin-import": "^2.2.0", |
| 102 | + "eslint-plugin-jsx-a11y": "^4.0.0", |
| 103 | + "eslint-plugin-react": "^6.10.3", |
| 104 | + "file-saver": "^1.3.3", |
| 105 | + "gulp": "^3.9.1", |
| 106 | + "gulp-clean-css": "^3.4.2", |
| 107 | + "gulp-concat-css": "^2.3.0", |
| 108 | + "gulp-concat-util": "^0.5.5", |
| 109 | + "gulp-connect": "^5.0.0", |
| 110 | + "gulp-gh-pages": "^0.5.4", |
| 111 | + "gulp-mustache-plus": "^1.0.1", |
| 112 | + "gulp-open": "^2.0.0", |
| 113 | + "gulp-rename": "^1.2.2", |
| 114 | + "gulp-rev": "^7.1.2", |
| 115 | + "gulp-sass": "^3.1.0", |
| 116 | + "gulp-sourcemaps": "^2.5.0", |
| 117 | + "gulp-watch": "^4.3.11", |
| 118 | + "husky": "^0.13.4", |
| 119 | + "i18next-scanner": "^1.8.0", |
| 120 | + "immutable": "^3.8.1", |
| 121 | + "jest": "^19.0.2", |
| 122 | + "jquery": "3.2.1", |
| 123 | + "jquery-ui": "^1.12.1", |
| 124 | + "jquery-ui-css": "^1.11.4", |
| 125 | + "js-interpreter": "^1.4.6", |
| 126 | + "json2csv": "^3.9.1", |
| 127 | + "lint-staged": "^3.6.1", |
| 128 | + "loader-utils": "^1.1.0", |
| 129 | + "notifyjs-browser": "^0.4.2", |
| 130 | + "prettier-eslint-cli": "^4.1.1", |
| 131 | + "prop-types": "^15.5.8", |
| 132 | + "react": "^15.6.1", |
| 133 | + "react-data-grid": "^2.0.49", |
| 134 | + "react-dom": "^15.6.1", |
| 135 | + "react-joyride": "^1.10.1", |
| 136 | + "redux": "^3.6.0", |
| 137 | + "redux-thunk": "^2.2.0", |
| 138 | + "sha1": "^1.1.1", |
| 139 | + "trackjs": "^2.8.2", |
| 140 | + "vinyl-paths": "^2.1.0", |
| 141 | + "webpack": "^2.6.1", |
| 142 | + "webpack-stream": "^3.2.0", |
| 143 | + "ws": "^2.2.2" |
| 144 | + }, |
| 145 | + "dependencies": { |
| 146 | + "commander": "^2.9.0", |
| 147 | + "concat-stream": "^1.6.0" |
| 148 | + } |
142 | 149 | }
|
0 commit comments