-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
32 lines (32 loc) · 1.11 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
{
"name": "fumosite",
"version": "1.0.0",
"description": "",
"dependencies": {
"mustache": "^4.0.1",
"sass": "^1.26.10"
},
"scripts": {
"styles": "sass --style=expanded --embed-sources src/index.scss:static/index.css",
"fumogen": "mustache fumo_data.json src/index.mustache static/index.html && mustache fumo_data.json src/fumo_table.mustache static/fumo_table.html && mustache fumo_data.json src/fumo_list.mustache static/fumo_list.html && mustache fumo_data.json src/japanese.mustache static/japanese.html && mustache fumo_data.json src/proxy_forward.mustache static/proxy_forward.html && mustache fumo_data.json src/reseller.mustache static/reseller.html && mustache fumo_data.json src/fumo_checklist.mustache static/fumo_checklist.html",
"build": "npm run styles && npm run fumogen"
},
"watch": {
"styles": {
"patterns": [
"."
],
"extensions": "scss",
"runOnChangeOnly": false
},
"fumogen": {
"patterns": [
"."
],
"extensions": "mustache,json",
"runOnChangeOnly": false
}
},
"author": "",
"license": "MIT"
}