forked from charted-co/charted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "chartedjs",
"version": "2.0.2",
"description": "A charting library originally created by the Product Science team at Medium",
"main": "out/server/charted.js",
"scripts": {
"postinstall": "bin/build",
"prestart": "bin/build",
"start": "bin/watch && node out/server/index.js",
"pretest": "bin/build",
"test": "nodeunit out/server/*_test.js",
"build-prod": "bin/build --prod",
"start-prod": "bin/build --prod && node out/server/index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:mikesall/charted.git"
},
"keywords": [
"charts"
],
"author": "Mike Sall <mike@medium.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikesall/charted/issues"
},
"dependencies": {
"babel": "6.0.x",
"babel-cli": "6.3.x",
"babel-core": "6.3.x",
"babel-plugin-transform-es2015-modules-amd": "6.3.x",
"babel-plugin-transform-flow-strip-types": "6.3.x",
"babel-preset-es2015": "6.3.x",
"babel-preset-stage-0": "6.3.x",
"body-parser": "1.14.x",
"connect": "^3.3.5",
"express": "4.10.x",
"handlebars": "^4.0.5",
"less": "1.7.x",
"nodeunit": "0.9.x",
"request": "2.47.x",
"requirejs": "^2.1.22",
"shelljs": "0.5.x",
"uglify-js": "^2.6.1"
},
"engines": {
"node": ">=4.1.1"
},
"homepage": "http://www.charted.co/"
}