-
Notifications
You must be signed in to change notification settings - Fork 354
/
package.json
82 lines (82 loc) · 2.34 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": "chartbuilder",
"version": "3.0.5",
"description": "Easily create beautiful charts",
"main": "src/js/index.js",
"scripts": {
"test:jsx": "browserify -t rewireify test/jsx/index-jsx.js | tap-closer | smokestack | tap-spec",
"test:js": "browserify test/index.js | tap-closer | smokestack | tap-spec",
"test": "npm run test:js",
"docs": "./node_modules/.bin/documentation --github --format html -o api-docs",
"test-page": "gulp test-page",
"dev": "gulp",
"build": "gulp build",
"aws": "gulp publish",
"gh-pages": "npm run build && npm run docs && mv api-docs build && gulp gh-pages",
"version": "npm run build && git add -A dist",
"postversion": "npm run gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/Quartz/Chartbuilder"
},
"author": "Quartz",
"contributors": [
{
"name": "Nikhil Sonnad",
"email": "nikhil@nsnnd.com"
},
{
"name": "David Yanofsky",
"email": "david@yanofsky.info"
}
],
"license": "MIT",
"dependencies": {
"chartbuilder-ui": "1.7.x",
"classnames": "^2.2.1",
"d3": "^3.5.5",
"d3-scale": "^1.0.4",
"flux": "~2.1.1",
"lodash": "^4.0.0",
"markdown-it": "^6.0.0",
"react": "^0.14.7",
"react-addons-pure-render-mixin": "^0.14.7",
"react-addons-shallow-compare": "^0.14.7",
"react-addons-update": "^0.14.7",
"react-dom": "^0.14.7",
"save-svg-as-png": "git://github.com/nsonnad/saveSvgAsPng.git#clean-svg-fonts",
"sizeof": "^1.0.0",
"sugar-date": "^1.5.1"
},
"devDependencies": {
"babel-preset-react": "^6.22.0",
"babelify": "^7.3.0",
"browser-sync": "2.x.x",
"browserify": "^13.0.0",
"del": "2.2.0",
"documentation": "^3.0.4",
"envify": "^3.2.0",
"faker": "^2.1.2",
"gulp": "^3.6.2",
"gulp-awspublish": "3.2.0",
"gulp-changed": "^1.3.0",
"gulp-css-base64": "^1.3.1",
"gulp-gh-pages": "^0.5.4",
"gulp-rename": "1.2.2",
"gulp-stylus": "^2.0.1",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.7",
"nib": "^1.0.2",
"nomnom": "^1.8.0",
"react-addons-test-utils": "^0.14.7",
"rewireify": "^0.2.5",
"smokestack": "^3.4.1",
"tap-closer": "^1.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "3.7.0"
}
}