-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.35 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
{
"name": "binary-charts",
"version": "8.5.12",
"description": "Binary trade and contract visualisation library, written in React",
"contributors": [
{
"name": "Boris Yankov",
"email": "[email protected]"
},
{
"name": "Lim Qing Wei",
"email": "[email protected]"
}
],
"main": "lib/binary-charts.js",
"scripts": {
"start": "start-storybook -p 9001 --dont-track",
"test": "jest",
"build": "NODE_ENV=production webpack --config webpack.config.js",
"storybook": "build-storybook -o dist",
"ghpages": "git subtree push --prefix dist origin gh-pages",
"prepublish": "npm run build",
"ci": "webpack --config webpack.config.js --progress --colors --watch",
"test:coverage": "jest --coverage",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test:eslint": "webpack --config webpack.config.js",
"test:flow": "flow check --all --show-all-errors",
"test:full": "npm run test:eslint && npm run test:coveralls"
},
"keywords": [
"binary.com"
],
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
],
"plugins": [
"transform-flow-strip-types"
]
},
"license": "MIT",
"dependencies": {
"binary-indicators": "^1.3.0",
"binary-utils": "*",
"fbjs": "^0.8.5",
"highcharts": "^4.2.7"
},
"devDependencies": {
"@kadira/storybook": "^2.20.1",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"binary-live-api": "*",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"enzyme": "^2.4.1",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-flowtype": "^2.19.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"jest-cli": "^16.0.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"svg-react-loader": "^0.3.7",
"webpack": "2.1.0-beta.23"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2"
}
}