-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.22 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.22 KB
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": "js13k_lost",
"version": "1.0.0",
"description": "Entry to the js13kGames 2017 competition in the A-Frame category.",
"main": "index.js",
"scripts": {
"start": "browser-sync start --no-open --server dist",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently -k \"browser-sync start --no-open --reload-delay 1000 --server \"dist\" -f \"dist\"\" \"watch 'npm run rollup' -d -p /dist/ --interval=2 --wait=6\"",
"rollup": "mkdir -p dist && rollup -c && cp index.html dist/index.html",
"minify": "uglifyjs ./dist/index.js --comments --compress --mangle -o ./dist/index.js && cp index.html dist/index.html",
"dist": "npm run rollup && npm run minify",
"build": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nylki/shifted-dimensions.git"
},
"author": "nylki (Tom Brewe)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nylki/shifted-dimensions/issues"
},
"homepage": "https://github.com/nylki/shifted-dimensions#readme",
"dependencies": {},
"devDependencies": {
"browser-sync": "^2.18.13",
"concurrently": "^3.5.0",
"rollup": "^0.48.2",
"uglify-es": "^3.2.2",
"watch": "^1.0.2"
}
}