diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/package.json b/package.json index 66555a39b..d92754613 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,13 @@ "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" @@ -17,7 +24,12 @@ "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" } } |