123456789101112131415161718192021222324252627 |
- {
- "name": "@brwong/$foldername",
- "author": "Brandon Wong",
- "version": "0.1.0",
- "main": "build/main.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "compile": "babel src --out-dir build && webpack build/main.js build/bundle.js",
- "watch": "nodemon --watch src --exec \"npm run compile\""
- },
- "dependencies": {
- "babel-cli": "^6.14.0",
- "babel-plugin-transform-remove-console": "^6.8.0",
- "babel-plugin-transform-runtime": "^6.15.0",
- "babel-preset-latest": "^6.16.0",
- "cross-env": "^1.0.8",
- "webpack": "^1.13.2"
- },
- "devDependencies": {
- "nodemon": "^1.9.1"
- },
- "directories": {
- "test": "test"
- },
- "private": true
- }
|