aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
blob: 56c6b39b691cbc44922fb98c9fc6467ecf2d08ce (plain) (blame)
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
32
33
{
  "name": "purs-loader",
  "version": "0.0.3",
  "description": "PureScript loader for webpack",
  "license": "MIT",
  "repository": "ethul/purs-loader",
  "author": {
    "name": "Eric Thul",
    "email": "thul.eric@gmail.com"
  },
  "scripts": {
    "build": "npm run-script build:compile && npm run-script build:package",
    "build:compile": "gulp build",
    "build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail",
    "build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json"
  },
  "files": [
    "index.js"
  ],
  "devDependencies": {
    "del": "^1.1.1",
    "gulp": "^3.8.11",
    "gulp-plumber": "^1.0.0",
    "gulp-purescript": "^0.3.1",
    "gulp-util": "^3.0.4",
    "run-sequence": "^1.0.2",
    "webpack": "^1.8.4"
  },
  "dependencies": {
    "glob": "^5.0.3",
    "loader-utils": "^0.2.6"
  }
}