diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 38 |
1 files changed, 23 insertions, 15 deletions
diff --git a/package.json b/package.json index 4d458b8..56c6b39 100644 --- a/package.json +++ b/package.json | |||
@@ -2,24 +2,32 @@ | |||
2 | "name": "purs-loader", | 2 | "name": "purs-loader", |
3 | "version": "0.0.3", | 3 | "version": "0.0.3", |
4 | "description": "PureScript loader for webpack", | 4 | "description": "PureScript loader for webpack", |
5 | "main": "index.js", | 5 | "license": "MIT", |
6 | "scripts": { | 6 | "repository": "ethul/purs-loader", |
7 | "test": "echo \"Error: no test specified\" && exit 1" | 7 | "author": { |
8 | "name": "Eric Thul", | ||
9 | "email": "thul.eric@gmail.com" | ||
8 | }, | 10 | }, |
9 | "repository": { | 11 | "scripts": { |
10 | "type": "git", | 12 | "build": "npm run-script build:compile && npm run-script build:package", |
11 | "url": "git@github.com:ethul/purs-loader.git" | 13 | "build:compile": "gulp build", |
14 | "build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail", | ||
15 | "build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json" | ||
12 | }, | 16 | }, |
13 | "author": "Eric Thul", | 17 | "files": [ |
14 | "license": "MIT", | 18 | "index.js" |
15 | "bugs": { | 19 | ], |
16 | "url": "https://github.com/ethul/purs-loader/issues" | 20 | "devDependencies": { |
21 | "del": "^1.1.1", | ||
22 | "gulp": "^3.8.11", | ||
23 | "gulp-plumber": "^1.0.0", | ||
24 | "gulp-purescript": "^0.3.1", | ||
25 | "gulp-util": "^3.0.4", | ||
26 | "run-sequence": "^1.0.2", | ||
27 | "webpack": "^1.8.4" | ||
17 | }, | 28 | }, |
18 | "homepage": "https://github.com/ethul/purs-loader", | ||
19 | "dependencies": { | 29 | "dependencies": { |
20 | "chalk": "^0.5.1", | 30 | "glob": "^5.0.3", |
21 | "glob": "4.0.6", | 31 | "loader-utils": "^0.2.6" |
22 | "loader-utils": "^0.2.3", | ||
23 | "lodash": "^2.4.1" | ||
24 | } | 32 | } |
25 | } | 33 | } |