]>
Commit | Line | Data |
---|---|---|
1 | { | |
2 | "name": "purs-loader", | |
3 | "version": "0.3.2", | |
4 | "description": "PureScript loader for webpack", | |
5 | "license": "MIT", | |
6 | "repository": "ethul/purs-loader", | |
7 | "author": { | |
8 | "name": "Eric Thul", | |
9 | "email": "thul.eric@gmail.com" | |
10 | }, | |
11 | "scripts": { | |
12 | "build": "npm run-script build:compile && npm run-script build:package", | |
13 | "build:compile": "./node_modules/.bin/pulp build -o build", | |
14 | "build:watch": "./node_modules/.bin/pulp -w build -o build", | |
15 | "build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail", | |
16 | "build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json", | |
17 | "prepublish": "npm run-script build" | |
18 | }, | |
19 | "files": [ | |
20 | "index.js" | |
21 | ], | |
22 | "devDependencies": { | |
23 | "pulp": "^4.3.0", | |
24 | "webpack": "^1.8.4" | |
25 | }, | |
26 | "dependencies": { | |
27 | "async": "^1.3.0", | |
28 | "chalk": "^1.1.0", | |
29 | "glob": "^5.0.3", | |
30 | "loader-utils": "^0.2.6" | |
31 | } | |
32 | } |