forked from naver/billboard.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.38 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "billboard.js",
"version": "1.2.0-snapshot",
"description": "Re-usable easy interface JavaScript chart library, based on D3 v4+",
"homepage": "http://naver.github.io/billboard.js/",
"main": "dist/billboard.js",
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack --env production && webpack --env packaged",
"deploy": "bash ./config/deploy.sh",
"lint": "eslint src",
"test": "node --max-old-space-size=1024 ./node_modules/karma/bin/karma start",
"test:chrome": "npm test -- --chrome",
"coverage": "npm test -- --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"jsdoc": "npm run build && jsdoc -c jsdoc.json",
"changelog": "node ./config/changelog.js",
"commitmsg": "node ./config/validate-commit-msg.js",
"prepush": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/naver/billboard.js"
},
"bugs": {
"url": "https://github.com/naver/billboard.js/issues"
},
"keywords": [
"d3",
"chart",
"graph",
"svg"
],
"author": "NAVER Corp.",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"d3": "^4.10.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-helper-modules": "^6.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-minify-constant-folding": "^0.2.0",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-minify-guarded-expressions": "^0.2.0",
"babel-plugin-minify-numeric-literals": "^0.2.0",
"babel-plugin-minify-simplify": "^0.2.0",
"babel-plugin-minify-type-constructors": "^0.2.0",
"babel-plugin-transform-helper-modules": "^6.1.0",
"babel-plugin-transform-inline-consecutive-adds": "^0.2.0",
"babel-plugin-transform-merge-sibling-variables": "^6.8.6",
"babel-plugin-transform-minify-booleans": "^6.8.3",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"clean-webpack-plugin": "^0.1.16",
"coveralls": "^3.0.0",
"css-loader": "^0.28.4",
"docdash": "^0.4.0",
"eslint": "^4.4.1",
"eslint-config-naver": "^2.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"hammer-simulator": "0.0.1",
"husky": "^0.14.3",
"inject-loader": "^3.0.1",
"istanbul-instrumenter-loader": "^3.0.0",
"istanbul-lib-instrument": "^1.7.4",
"jsdoc": "^3.5.5",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"lite-fixture": "^1.0.2",
"mocha": "^4.0.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^3.0.0",
"regenerator-runtime": "^0.11.0",
"sass-loader": "^6.0.6",
"simulant": "^0.2.2",
"sinon": "^4.0.0",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^0.19.0",
"uglify-js": "^3.0.27",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.5.4",
"webpack-common-shake": "^1.5.3",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0",
"write-file-webpack-plugin": "^4.1.0",
"xml2js": "^0.4.18"
}
}