-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.05 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
{
"name": "d3-statsbombevents",
"version": "0.1.0",
"description": "d3 library for visualising statsbomb events",
"homepage": "https://github.com/SJTButler/d3-statsbombevents",
"repository": {
"type": "git",
"url" : "https://github.com/SJTButler/d3-statsbombevents.git"
},
"main": "index.js",
"scripts": {
"test": "npm run build && http-server",
"build": "rm -rf build && mkdir build && rollup -f umd --output.extend -n d3 -o build/d3-statsbombevents.js -- index.js",
"minify": "uglifyjs build/d3-statsbombevents.js -c -o build/d3-statsbombevents.min.js",
"prepublish": "npm run build && npm run minify",
"postpublish": "zip -j build/d3-statsbombevents.zip -- LICENSE README.md build/d3-statsbombevents.js build/d3-statsbombevents.min.js"
},
"keywords": [
"d3",
"visualisation",
"statsbomb",
"soccer-analytics"
],
"author": "Sam Butler",
"license": "BSD-3-Clause",
"devDependencies": {
"http-server": "^0.12.3",
"rollup": "^2.36.1",
"uglify-es": "^3.3.9"
},
"dependencies": {
}
}