-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) Β· 1.77 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
{
"name": "@0devco/chart",
"version": "1.0.0",
"description": "0devco javascript data charting with chartjs",
"main": "dist/index.js",
"scripts": {
"pretest": "npm run transpile",
"test": "node_modules/.bin/mocha test/tests.js",
"transpile": "node ./node_modules/babel-cli/bin/babel.js src --quiet --out-dir dist",
"bundle": "node_modules/.bin/webpack dist/index.js build/chart0devco.js --output-library chart",
"uglify": "node_modules/.bin/uglifyjs build/chart0devco.js --compress --mangle --output build/chart0devco.min.js",
"build": "npm run transpile && npm run bundle && npm run uglify",
"eslint": "node_modules/.bin/eslint src/ test/",
"coverage": "npm run transpile && node_modules/.bin/nyc mocha test/tests.js",
"reporter": "node_modules/.bin/nyc report --reporter=html",
"prepublishOnly": "npm run build"
},
"babel": {
"presets": [
"env"
]
},
"repository": {
"type": "git",
"url": "https://github.com/0devco/chart"
},
"keywords": [
"0devco",
"data",
"chart",
"ChartJs",
"js",
"vue",
"react"
],
"author": {
"name": "0devco",
"email": "[email protected]",
"url": "http://0dev.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/0devco/chart/issues"
},
"homepage": "https://github.com/0devco/chart",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.1",
"benchmark": "^2.1.0",
"chai": "^4.1.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.5.0",
"hoax.js": "^1.0.0",
"mocha": "^3.5.2",
"nyc": "^11.0.2",
"uglify-js": "^3.2.2",
"webpack": "^3.10.0"
},
"dependencies": {
"chart.js": "^2.7.2"
}
}