diff options
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 | } |