-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "menu",
"version": "1.0.0",
"description": "The menu display for OSSCafe",
"private": true,
"scripts": {
"deploy": "npm run build && gh-pages -d dist",
"deploy-from-travis": "npm run build && npm run gh-pages-travis",
"gh-pages-travis": "gh-pages -d dist -r \"https://[email protected]/osscafe/menu.git\"",
"start": "npm run build; npm run watch & npm run server",
"build": "npm run rsync && rollup -c",
"rsync": "rsync -avu --exclude '*.tag' --exclude '*.js' src/ dist/",
"watch": "chokidar 'src/**' -c 'npm run build'",
"server": "browser-sync start --files 'dist/*' --server dist/"
},
"dependencies": {
"riot": "^3.3.1",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"browser-sync": "^2.18.8",
"chokidar-cli": "^1.2.0",
"gh-pages": "^0.12.0",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-riot": "^1.1.0"
},
"license": "MIT"
}