]> git.immae.eu Git - github/fretlink/purs-loader.git/blobdiff - package.json
Version 3.4.0
[github/fretlink/purs-loader.git] / package.json
index e1a79d69e28427b45694eecc911b28bfebd179aa..7be258b4f5204f2c41b465f2c6c00238cc995586 100644 (file)
@@ -1,32 +1,53 @@
 {
   "name": "purs-loader",
-  "version": "0.6.0-beta.0",
-  "description": "PureScript loader for webpack",
-  "license": "MIT",
-  "repository": "ethul/purs-loader",
-  "author": {
-    "name": "Eric Thul",
-    "email": "thul.eric@gmail.com"
-  },
+  "version": "3.4.0",
+  "description": "A webpack loader for PureScript.",
+  "main": "lib/index.js",
+  "files": [
+    "LICENSE",
+    "README.md",
+    "src",
+    "lib"
+  ],
   "scripts": {
-    "build": "npm run-script build:compile && npm run-script build:docs && npm run-script build:package",
-    "build:compile": "pulp build -o build --force",
-    "build:docs": "pulp docs",
-    "build:package": "webpack --progress --colors --profile --bail",
-    "build:watch": "pulp -w build -o build --force",
-    "build:json": "webpack --progress --colors --profile --bail --json > index.json",
-    "prepublish": "npm run-script build"
+    "build": "babel src --out-dir lib",
+    "prepublish": "npm run build",
+    "test": "echo \"Error: no test specified\" && exit 1"
   },
-  "files": [
-    "index.js"
+  "repository": {
+    "type": "git",
+    "url": "git://github.com/ethul/purs-loader.git"
+  },
+  "keywords": [
+    "loader",
+    "webpack",
+    "purescript",
+    "purs-loader",
+    "purs-loader"
   ],
-  "devDependencies": {
-    "webpack": "^1.8.4"
+  "author": "Alexander C. Mingoia",
+  "contributors": [
+    "Eric Thul"
+  ],
+  "license": "MIT",
+  "bugs": {
+    "url": "https://github.com/ethul/purs-loader/issues"
   },
+  "homepage": "https://github.com/ethul/purs-loader#readme",
   "dependencies": {
-    "async": "^1.3.0",
-    "chalk": "^1.1.0",
-    "debug": "^2.2.0",
-    "loader-utils": "^0.2.6"
+    "bluebird": "^3.3.5",
+    "chalk": "^1.1.3",
+    "cross-spawn": "^3.0.1",
+    "dargs": "^5.1.0",
+    "debug": "^2.6.0",
+    "globby": "^4.0.0",
+    "js-string-escape": "^1.0.1",
+    "loader-utils": "^1.0.2",
+    "lodash.difference": "^4.5.0",
+    "promise-retry": "^1.1.0"
+  },
+  "devDependencies": {
+    "babel-cli": "^6.8.0",
+    "babel-preset-es2015": "^6.6.0"
   }
 }