diff options
author | eric <thul.eric@gmail.com> | 2016-01-19 08:41:51 -0500 |
---|---|---|
committer | eric <thul.eric@gmail.com> | 2016-01-19 08:41:51 -0500 |
commit | 2ecf85616a2b56ec9ff675c8f45b7dcf5607fc86 (patch) | |
tree | f8ad39dc0d21ae4add8f2a3877edf24294d2910f /package.json | |
parent | 94cc1cdd03b9c2115813a698b1e4337bce894321 (diff) | |
parent | c01553307e6fcd0abada0b9b2f9ca8d6bb82b863 (diff) | |
download | purs-loader-2ecf85616a2b56ec9ff675c8f45b7dcf5607fc86.tar.gz purs-loader-2ecf85616a2b56ec9ff675c8f45b7dcf5607fc86.tar.zst purs-loader-2ecf85616a2b56ec9ff675c8f45b7dcf5607fc86.zip |
Merge pull request #34 from ethul/topic/psc-webpack-plugin
Topic/psc webpack plugin
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/package.json b/package.json index b1ae011..13d4c6c 100644 --- a/package.json +++ b/package.json | |||
@@ -10,24 +10,22 @@ | |||
10 | }, | 10 | }, |
11 | "scripts": { | 11 | "scripts": { |
12 | "build": "npm run-script build:compile && npm run-script build:docs && npm run-script build:package", | 12 | "build": "npm run-script build:compile && npm run-script build:docs && npm run-script build:package", |
13 | "build:compile": "./node_modules/.bin/pulp build -o build", | 13 | "build:compile": "pulp build -o build --force", |
14 | "build:docs": "./node_modules/.bin/pulp docs", | 14 | "build:docs": "pulp docs", |
15 | "build:package": "./node_modules/.bin/webpack --progress --colors --profile --bail", | 15 | "build:package": "webpack --progress --colors --profile --bail", |
16 | "build:watch": "./node_modules/.bin/pulp -w build -o build", | 16 | "build:watch": "pulp -w build -o build --force", |
17 | "build:json": "./node_modules/.bin/webpack --progress --colors --profile --bail --json > index.json", | 17 | "build:json": "webpack --progress --colors --profile --bail --json > index.json", |
18 | "prepublish": "npm run-script build" | 18 | "prepublish": "npm run-script build" |
19 | }, | 19 | }, |
20 | "files": [ | 20 | "files": [ |
21 | "index.js" | 21 | "index.js" |
22 | ], | 22 | ], |
23 | "devDependencies": { | 23 | "devDependencies": { |
24 | "pulp": "^4.3.0", | ||
25 | "webpack": "^1.8.4" | 24 | "webpack": "^1.8.4" |
26 | }, | 25 | }, |
27 | "dependencies": { | 26 | "dependencies": { |
28 | "async": "^1.3.0", | 27 | "async": "^1.3.0", |
29 | "chalk": "^1.1.0", | 28 | "chalk": "^1.1.0", |
30 | "glob": "^5.0.3", | ||
31 | "loader-utils": "^0.2.6" | 29 | "loader-utils": "^0.2.6" |
32 | } | 30 | } |
33 | } | 31 | } |