This repository has been archived by the owner on Jan 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
59 lines (59 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "html5-games-workshop",
"version": "1.0.0",
"description": "html5 game development workshop",
"main": "index.js",
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "md,css,pug",
"quiet": true
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node index.js",
"build:ghpages": "node index.js --base \"/html5-games-workshop\"",
"watch": "npm-watch",
"ghpages": "gh-pages -d dist",
"deploy": "npm run build:ghpages && npm run ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozdevs/html5-games-workshop.git"
},
"keywords": [
"workshop",
"gamedev",
"games"
],
"author": "Belén \"Benko\" Albeza",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/mozdevs/html5-games-workshop/issues"
},
"homepage": "https://github.com/mozdevs/html5-games-workshop#readme",
"dependencies": {
"gh-pages": "^0.12.0",
"ghpages": "0.0.8",
"metalsmith": "^2.3.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-layouts": "^1.7.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-multi-language": "^0.2.0",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-prefixoid": "^1.0.3",
"metalsmith-relative": "^1.0.3",
"metalsmith-rewrite": "^0.1.2",
"metalsmith-slug": "^0.2.0",
"minimist": "^1.2.0",
"pug": "^2.0.0-beta9"
},
"devDependencies": {
"gh-pages": "^0.12.0",
"npm-watch": "^0.1.8"
}
}