Files: 0644bfade7bc961ab6db3a76a64a4babf57e7666 / package.json
872 bytesRaw
1 | { |
2 | "name": "gtones", |
3 | "version": "0.0.0", |
4 | "description": "command line server + browserify", |
5 | "main": "index.js", |
6 | "scripts": { |
7 | "build:css": "node-sass sass/ -o public/style", |
8 | "watch:css": "nodemon -e scss -x \"npm run build:css\"", |
9 | "prefix": "postcss --use autoprefixer -o public/style/main.css public/style/main.css", |
10 | "test": "echo \"Error: no test specified\" && exit 1", |
11 | "start": "node server.js", |
12 | "bundle": "browserify entry.js -o public/scripts/bundle.js -t brfs -d", |
13 | "watch:js": "watchify entry.js -o public/scripts/bundle.js -t brfs -d", |
14 | "watch": "npm run watch:js & npm run watch:css", |
15 | "build": "npm run prefix", |
16 | "develop": "parallelshell 'npm run start' 'npm run watch'", |
17 | "dev-start": "nodemon server.js" |
18 | }, |
19 | "repository": "", |
20 | "author": "", |
21 | "license": "", |
22 | "dependencies": { |
23 | "jgauss": "^0.2.0" |
24 | } |
25 | } |
26 |
Built with git-ssb-web