aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authoreric thul <thul.eric@gmail.com>2015-04-08 19:49:24 -0400
committereric thul <thul.eric@gmail.com>2015-04-12 11:19:22 -0400
commitc194f84cab66fa6e18b78c32f9cdf2bddf8d1e68 (patch)
tree5470b97ffc561915796f5a8a2a9541d9ebef50ae /package.json
parent9d38968bbe4bbf54e2ca836d9a1550d74d4da703 (diff)
downloadpurs-loader-c194f84cab66fa6e18b78c32f9cdf2bddf8d1e68.tar.gz
purs-loader-c194f84cab66fa6e18b78c32f9cdf2bddf8d1e68.tar.zst
purs-loader-c194f84cab66fa6e18b78c32f9cdf2bddf8d1e68.zip
Rewrite using purescript for the implementation
Diffstat (limited to 'package.json')
-rw-r--r--package.json38
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}