123456789101112131415161718192021 |
- {
- "name": "@brwong/$foldername",
- "author": "Brandon Wong <projects@brwong.net> (https://www.brwong.net/)",
- "main": "build/service.js",
- "version": "0.1.0",
- "scripts": {
- "test": "node test-build/service.js",
- "compile-prod": "cross-env NODE_ENV=production npm run compile",
- "compile": "npm run compile-src && npm run compile-test",
- "compile-test": "babel test --out-dir test-build",
- "compile-src": "babel src --out-dir build",
- "watch": "nodemon --watch src --watch test --exec \"npm run compile --silent\"",
- "serverwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && node build/service.js\"",
- "testwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && npm test\""
- },
- "directories": {
- "test": "test"
- },
- "private": true
- }
|