forked from JosekiParty/joseki.party
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "joseki.party",
"version": "1.0.0",
"description": "GUI for Go",
"main": "index.js",
"scripts": {
"js": "simplifyify source/js/app.js -d -o build/",
"js:production": "npm run js -- -m",
"css": "myth source/css/app.css build/app.css",
"img": "imagemin-newer source/img/ build",
"html": "static-site -s source/ -b build/",
"posthtml": "cp build/200/index.html build/200.html",
"fonts": "cp source/fonts/* build/",
"prestart": "mkdir -p build && npm-run-series img html css fonts",
"start": "parallelshell 'rerun-script' 'npm run js -- -w' 'live-server --entry-file=200.html build'",
"test": "standard --verbose source/js/**/*.js | snazzy",
"predeploy": "npm-run-series prestart js",
"deploy": "surge -p build/ -d joseki.party"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"watches": {
"css": "source/css/**",
"img": "source/img/**",
"html": "source/*.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosekiParty/joseki.party.git"
},
"keywords": [
"Go",
"Goban.",
"Weiqi"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JosekiParty/joseki.party/issues"
},
"homepage": "http://joseki.party",
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"imagemin-newer": "^1.0.1",
"live-server": "^0.9.2",
"myth": "github:pin3da/myth",
"npm-run-series": "^1.0.0",
"parallelshell": "^2.0.0",
"rerun-script": "^0.6.0",
"simplifyify": "^2.0.1",
"snazzy": "^4.0.0",
"standard": "^7.1.2",
"static-site": "^1.2.0",
"surge": "^0.17.7",
"weiqi": "github:nikolaswise/weiqi.js"
},
"dependencies": {
"dom-matches": "^2.0.0",
"firebase": "^2.4.2",
"form-serialize": "^0.7.1",
"route-matcher": "^0.1.0",
"sillyname": "^0.1.0",
"tiny-emitter": "^1.0.2",
"weiqi": "^0.2.0"
}
}