X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=package.json;h=3bdd5ec95550723aac3076350e24baa8bea3c7bc;hb=44eb153bce3d995e8ded6d5fef486567f5379d0d;hp=56c6b39b691cbc44922fb98c9fc6467ecf2d08ce;hpb=c194f84cab66fa6e18b78c32f9cdf2bddf8d1e68;p=github%2Ffretlink%2Fpurs-loader.git diff --git a/package.json b/package.json index 56c6b39..3bdd5ec 100644 --- a/package.json +++ b/package.json @@ -1,33 +1,53 @@ { "name": "purs-loader", - "version": "0.0.3", - "description": "PureScript loader for webpack", - "license": "MIT", - "repository": "ethul/purs-loader", - "author": { - "name": "Eric Thul", - "email": "thul.eric@gmail.com" - }, + "version": "1.0.0-rc.0", + "description": "A webpack loader for PureScript.", + "main": "index.js", + "files": [ + "LICENSE", + "README.md", + "index.js", + "src/index.js" + ], "scripts": { - "build": "npm run-script build:compile && npm run-script build:package", - "build:compile": "gulp build", - "build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail", - "build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json" + "build": "babel src/index.js -o index.js", + "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": { - "del": "^1.1.1", - "gulp": "^3.8.11", - "gulp-plumber": "^1.0.0", - "gulp-purescript": "^0.3.1", - "gulp-util": "^3.0.4", - "run-sequence": "^1.0.2", - "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", + "peerDependencies": { + "webpack": ">=1.0.0 <3.0.0", + "purescript": ">=0.8.0" }, "dependencies": { - "glob": "^5.0.3", - "loader-utils": "^0.2.6" + "bluebird": "^3.3.5", + "chalk": "^1.1.3", + "debug": "^2.2.0", + "globby": "^4.0.0", + "loader-utils": "^0.2.14", + "promise-retry": "^1.1.0" + }, + "devDependencies": { + "babel-cli": "^6.8.0", + "babel-preset-es2015": "^6.6.0" } }