forked from naver/billboard.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.98 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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "billboard.js",
"version": "1.6.2-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-serve --open",
"build": "npm run build:production && npm run build:packaged && npm run build:theme",
"build:production": "cross-env NODE_ENV=production webpack",
"build:packaged": "cross-env NODE_ENV=packaged webpack",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:theme": "cross-env NODE_ENV=theme webpack",
"build:production:monitor": "cross-env MONITOR=true npm run build:production",
"build:packaged:monitor": "cross-env MONITOR=true npm run build:packaged",
"build:nightly": "node ./config/nightly.js",
"deploy": "bash ./config/deploy.sh",
"lint": "eslint src",
"test": "node --max-old-space-size=2048 ./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": "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": "^5.5.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-helper-modules": "^6.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-minify-constant-folding": "^0.4.3",
"babel-plugin-minify-dead-code-elimination": "^0.4.3",
"babel-plugin-minify-guarded-expressions": "^0.4.3",
"babel-plugin-minify-numeric-literals": "^0.4.3",
"babel-plugin-minify-simplify": "^0.4.3",
"babel-plugin-minify-type-constructors": "^0.4.3",
"babel-plugin-transform-helper-modules": "^6.1.0",
"babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
"babel-plugin-transform-merge-sibling-variables": "^6.9.4",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.1",
"clean-webpack-plugin": "^0.1.19",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"docdash": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-naver": "^2.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"exports-loader": "^0.7.0",
"hammer-simulator": "0.0.1",
"husky": "^0.14.3",
"inject-loader": "^4.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"istanbul-lib-instrument": "^1.10.1",
"jsdoc": "^3.5.5",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"lite-fixture": "^1.0.2",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^7.1.0",
"simulant": "^0.2.2",
"sinon": "^6.1.5",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^0.22.1",
"uglify-js": "^3.4.7",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.5",
"webpack-clean": "^1.2.2",
"webpack-command": "^0.4.0",
"webpack-common-shake": "^2.0.1",
"webpack-merge": "^4.1.4",
"webpack-monitor": "^1.0.14",
"webpack-serve": "^2.0.2",
"webpack-stylish": "^0.1.8",
"webpackbar": "^2.6.2",
"write-file-webpack-plugin": "^4.3.2",
"xml2js": "^0.4.18"
}
}