-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "g-annotations",
"version": "0.0.0",
"description": "Module to add annotations to charts",
"keywords": [
"d3",
"d3-module"
],
"license": "BSD-3-Clause",
"main": "build/g-annotations.js",
"module": "index",
"homepage": "https://github.com/ft-interactive/g-annotations",
"repository": {
"type": "git",
"url": "https://github.com/ft-interactive/g-annotations.git"
},
"scripts": {
"build": "rm -rf build && mkdir build && rollup --globals d3:d3 -f umd -n gAnnotations -o build/g-annotations.js -- index.js",
"test": "exit 0",
"prepare": "npm run build && npm run test && uglifyjs build/g-annotations.js -c -m -o build/g-annotations.min.js"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/register": "^7.0.0-beta.54",
"codecov": "^3.0.4",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"npm-prepublish": "^1.2.3",
"nyc": "^12.0.2",
"rollup": "^0.27.1",
"tape": "4",
"uglify-es": "^3.3.9"
},
"dependencies": {
"d3": "^5.5.0"
}
}