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.3.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:docs && npm run-script build:package",
"build:compile": "./node_modules/.bin/pulp build -o build",
"build:docs": "./node_modules/.bin/pulp docs",
"build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail",
"build:watch": "./node_modules/.bin/pulp -w build -o build",
"build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json",
"prepublish": "npm run-script build"
},
"files": [
"index.js"
],
"devDependencies": {
"pulp": "^4.3.0",
"webpack": "^1.8.4"
},
"dependencies": {
"async": "^1.3.0",
"chalk": "^1.1.0",
"glob": "^5.0.3",
"loader-utils": "^0.2.6"
}
}
|