aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/package.json
blob: d1319b135821bb6b7867bf2c35da5580a3ae635e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "name": "example",
  "version": "0.0.0",
  "private": true,
  "scripts": {
    "build": "mkdir -p output && ./node_modules/.bin/webpack --progress --colors",
    "build:watch": "mkdir -p output && ./node_modules/.bin/webpack --progress --colors --watch",
    "run": "node bundle.js",
    "clean": "rm -rf bower_components && rm -rf bundle.js && rm -rf node_modules && rm -rf output"
  },
  "license": "MIT",
  "devDependencies": {
    "node-libs-browser": "^0.5.2",
    "purs-loader": "file:../",
    "webpack": "^1.10.1"
  }
}