forked from devinit/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.7 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
83
84
85
{
"name": "@devinit/charts",
"version": "1.6.52",
"description": "Modular D3 charts for DevInit DataHub",
"main": "lib/index.js",
"scripts": {
"test": "babel -d lib/ src/ && mocha --reporter spec -r jsdom-global/register",
"test:dev": "mocha --reporter spec -r jsdom-global/register",
"start": "webpack-dev-server",
"compile": "babel -d lib/ src/",
"lint": "eslint schema src test --ext .js && npm run flow",
"format": "prettier-eslint --write \"src/**/*.js\" \"test/**/*.js\" \"schema/**/*.js\"",
"build": "webpack --env=dev --profile --colors",
"build:production": "WEBPACK_ENV=production webpack --env=prod --profile --colors",
"patch": "release-it -i patch -n",
"feature": "release-it -i minor -n",
"breaking": "release-it -i major -n",
"schema": "mkdir -p dist && jsdoc --template schema --destination dist/di-charts.schema.json lib/charts lib/factories",
"schema:dev": "npm run compile && npm run schema"
},
"dependencies": {
"babel-runtime": "6.26.0",
"chai-stats": "^0.3.0",
"d3": "4.10.2",
"d3-drag": "^1.1.0",
"lodash": "^4.17.4",
"object-hash": "^1.1.8",
"plottable": "3.1.1",
"tooltip": "^1.6.1",
"tooltip.js": "^1.1.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-remove-webpack": "^1.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"chai": "^3.5.0",
"css-loader": "^0.28.4",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"flow-bin": "^0.54.1",
"jsdoc": "^3.4.3",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"mocha": "^3.4.2",
"prettier-eslint-cli": "^4.3.2",
"progress-bar-webpack-plugin": "^1.9.3",
"release-it": "^2.7.3",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"directories": {
"dist": "./dist",
"lib": "./lib",
"src": "./src",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/devinit/charts.git"
},
"keywords": [
"charts",
"d3"
],
"author": "Alex Miller",
"license": "ISC",
"bugs": {
"url": "https://github.com/devinit/charts/issues"
},
"homepage": "https://github.com/devinit/charts#readme"
}