aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-05-24 18:40:51 +0800
committerGitHub <noreply@github.com>2017-05-24 18:40:51 +0800
commit302a497327296eee08f16b3203794e64a1609b16 (patch)
treeb561d5a5e3be754802b01c1d9557f04c2c02b3fd /package.json
parent9008d21407eedf683be91beeb07c14c2113fa798 (diff)
parent3097f8cdfbcc778c65a0b48dcfa4448767ab3713 (diff)
downloaddexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar
dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.gz
dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.bz2
dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.lz
dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.xz
dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.tar.zst
dexon-sol-tools-302a497327296eee08f16b3203794e64a1609b16.zip
Merge pull request #3 from 0xProject/webpack
Webpack && npm scripts && ignore files
Diffstat (limited to 'package.json')
-rw-r--r--package.json18
1 files changed, 15 insertions, 3 deletions
diff --git a/package.json b/package.json
index aa3194bec..d92754613 100644
--- a/package.json
+++ b/package.json
@@ -9,15 +9,27 @@
"tokens",
"exchange"
],
+ "scripts": {
+ "clean": "shx rm -rf _bundles lib lib-esm",
+ "build:bundle": "webpack",
+ "build:commonjs": "tsc",
+ "build:es6": "tsc -m es6 --outDir lib-esm",
+ "build": "npm run clean && run-p build:*"
+ },
"repository": {
"type": "git",
"url": "https://github.com/0xProject/0x.js"
},
- "license": "Apache 2.0",
+ "license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
- "dependencies": {
- "tslint-config-0xproject": "^0.0.0"
+ "devDependencies": {
+ "awesome-typescript-loader": "^3.1.3",
+ "npm-run-all": "^4.0.2",
+ "shx": "^0.2.2",
+ "tslint-config-0xproject": "^0.0.0",
+ "typescript": "^2.3.3",
+ "webpack": "^2.6.0"
}
}