aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/package.json
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2017-11-14 08:32:01 +0800
committerBrandon Millman <brandon.millman@gmail.com>2017-11-14 22:42:50 +0800
commit56b5619d24b44d23f770b58b0c9e1d4a63b89aca (patch)
tree52c047aa9ce6dbd5af93f495dbb21a8c3a662a6f /packages/json-schemas/package.json
parent08963f269b543d0f6f125ff77efdda23339865ed (diff)
downloaddexon-0x-contracts-56b5619d24b44d23f770b58b0c9e1d4a63b89aca.tar
dexon-0x-contracts-56b5619d24b44d23f770b58b0c9e1d4a63b89aca.tar.gz
dexon-0x-contracts-56b5619d24b44d23f770b58b0c9e1d4a63b89aca.tar.bz2
dexon-0x-contracts-56b5619d24b44d23f770b58b0c9e1d4a63b89aca.tar.lz
dexon-0x-contracts-56b5619d24b44d23f770b58b0c9e1d4a63b89aca.tar.xz
dexon-0x-contracts-56b5619d24b44d23f770b58b0c9e1d4a63b89aca.tar.zst
dexon-0x-contracts-56b5619d24b44d23f770b58b0c9e1d4a63b89aca.zip
Add json-schemas package to mono repo
Diffstat (limited to 'packages/json-schemas/package.json')
-rw-r--r--packages/json-schemas/package.json45
1 files changed, 45 insertions, 0 deletions
diff --git a/packages/json-schemas/package.json b/packages/json-schemas/package.json
new file mode 100644
index 000000000..e9dcf0379
--- /dev/null
+++ b/packages/json-schemas/package.json
@@ -0,0 +1,45 @@
+{
+ "name": "@0xproject/json-schemas",
+ "version": "0.6.6",
+ "description": "0x-related json schemas",
+ "main": "lib/src/index.js",
+ "types": "lib/src/index.d.ts",
+ "scripts": {
+ "lint": "tslint src/*.ts test/*.ts",
+ "test": "run-s clean build run_mocha",
+ "test:circleci": "yarn test",
+ "run_mocha": "mocha lib/test/**/*_test.js",
+ "clean": "shx rm -rf _bundles lib test_temp",
+ "build": "tsc"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/0xProject/0x.js.git"
+ },
+ "author": "",
+ "license": "Apache-2.0",
+ "bugs": {
+ "url": "https://github.com/0xProject/0x.js/issues"
+ },
+ "homepage": "https://github.com/0xProject/0x.js/packages/json-schemas/README.md",
+ "dependencies": {
+ "jsonschema": "^1.2.0",
+ "lodash.values": "^4.3.0"
+ },
+ "devDependencies": {
+ "@types/lodash.foreach": "^4.5.3",
+ "@types/lodash.values": "^4.3.3",
+ "@types/mocha": "^2.2.42",
+ "bignumber.js": "^4.0.2",
+ "chai": "^4.1.1",
+ "chai-typescript-typings": "^0.0.1",
+ "dirty-chai": "^2.0.1",
+ "lodash.foreach": "^4.5.0",
+ "mocha": "^4.0.1",
+ "npm-run-all": "^4.1.1",
+ "shx": "^0.2.2",
+ "tslint": "~5.5.0",
+ "tslint-config-0xproject": "^0.0.2",
+ "typescript": "^2.4.2"
+ }
+}