-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.22 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
{
"author": "Fund KIS",
"name": "reactchart",
"licence": "MIT",
"version": "1.1.0",
"description": "a React-based chart library, written from scratch. It is specialized in financial charts.",
"keywords": [
"React",
"chart",
"SVG",
"graph"
],
"homepage": "https://fundkis.com/lab/reactchart",
"dependencies": {
"react": "^0.14.7",
"underscore": "1.8.x",
"moment": "2.11.x",
"freezer-js": "^0.9.6"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.3.0",
"bundle-collapser": "^1.2.1",
"gulp": "^3.9.1",
"gulp-header": "^1.7.1",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.5.2",
"node-uuid": "^1.4.7",
"partialify": "^3.1.6",
"react-dom": "^0.14.7",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"build": "babel src -d lib",
"preBuild": "gulp buildNpm",
"prepublish": "npm run build && npm run preBuild"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/fundkis/reactchart"
}
}