-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "g-legend",
"version": "0.0.0",
"description": "{DESCRIPTION}",
"keywords": [
"legend",
"d3",
"d3-module"
],
"license": "BSD-3-Clause",
"main": "build/g-legend.js",
"jsnext:main": "index",
"module": "index.js",
"homepage": "https://github.com/ft-interactive/g-legend",
"repository": {
"type": "git",
"url": "https://github.com/ft-interactive/g-legend.git"
},
"scripts": {
"prepare": "npm run test && uglifyjs build/g-legend.js -c -m -o build/g-legend.min.js",
"pretest": "rm -rf build && mkdir build && rollup --globals d3:d3,g-chartcolour:gChartcolour -f umd -n gLegend -o build/g-legend.js -- index.js",
"test": "nyc tape -r '@babel/register' test/**/*.test.js",
"report-coverage": "nyc report --reporter=lcov && codecov"
},
"dependencies": {
"d3": "^4.9.1",
"g-chartcolour": "^0.8.17"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.31",
"@babel/preset-env": "^7.0.0-beta.31",
"@babel/register": "^7.0.0-beta.31",
"ajv": "^5.3.0",
"babel-register": "^6.26.0",
"codecov": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"npm-prepublish": "^1.2.3",
"nyc": "^11.3.0",
"rollup": "0.27",
"tap-spec": "^4.1.1",
"tape": "4",
"uglify-es": "^3.0.20"
}
}