-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (34 loc) · 1.03 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
{
"name": "leaguereplay",
"version": "0.3.3",
"description": "An interactive table and fixture replay engine, with optional links to video replays.",
"main": "index.js",
"dependencies": {
"absurd": "*",
"browserify" : "*",
"uglify-js" : "*"
},
"scripts": {
"build-js-debug": "browserify --entry ./src/index.js --outfile ./build/js/leaguereplay.js --debug",
"build-js": "browserify ./src/index.js | uglifyjs > ./build/js/leaguereplay.js",
"build-css": "absurd -s ./src/styles/index.js -o ./build/css/leaguereplay.css",
"build" : "npm run build-js-debug && npm run build-css",
"build-final" : "npm run build-js && npm run build-css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmoedk/leaguereplay.git"
},
"keywords": [
"league",
"replay",
"soccer",
"video"
],
"author": "Christian Moe",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cmoedk/leaguereplay/issues"
},
"homepage": "https://github.com/cmoedk/leaguereplay#readme"
}