aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-doc/package.json
diff options
context:
space:
mode:
authorF. Eugene Aumson <gene@aumson.org>2018-08-24 02:00:34 +0800
committerF. Eugene Aumson <gene@aumson.org>2018-08-29 20:50:55 +0800
commit775d1efd4607a4097704fe3c4f7ae1156b2c1a6f (patch)
tree4e3890609606bfff6548a841106807f6bcc76795 /packages/sol-doc/package.json
parent849e203812aacff453228a372143600b05155a2c (diff)
downloaddexon-0x-contracts-775d1efd4607a4097704fe3c4f7ae1156b2c1a6f.tar
dexon-0x-contracts-775d1efd4607a4097704fe3c4f7ae1156b2c1a6f.tar.gz
dexon-0x-contracts-775d1efd4607a4097704fe3c4f7ae1156b2c1a6f.tar.bz2
dexon-0x-contracts-775d1efd4607a4097704fe3c4f7ae1156b2c1a6f.tar.lz
dexon-0x-contracts-775d1efd4607a4097704fe3c4f7ae1156b2c1a6f.tar.xz
dexon-0x-contracts-775d1efd4607a4097704fe3c4f7ae1156b2c1a6f.tar.zst
dexon-0x-contracts-775d1efd4607a4097704fe3c4f7ae1156b2c1a6f.zip
add package sol-doc
Diffstat (limited to 'packages/sol-doc/package.json')
-rw-r--r--packages/sol-doc/package.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/sol-doc/package.json b/packages/sol-doc/package.json
new file mode 100644
index 000000000..91b69b968
--- /dev/null
+++ b/packages/sol-doc/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "@0xproject/sol-doc",
+ "version": "1.0.0",
+ "description": "Solidity documentation generator",
+ "main": "lib/src/index.js",
+ "types": "lib/src/index.d.js",
+ "scripts": {
+ "build": "tsc",
+ "test": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --timeout 5000 --exit",
+ "lint": "tslint --project . --format stylish",
+ "clean": "shx rm -rf lib"
+ },
+ "repository": "https://github.com/0xProject/0x-monorepo.git",
+ "author": "F. Eugene Aumson",
+ "license": "Apache-2.0",
+ "private": false,
+ "dependencies": {
+ "@0xproject/react-docs": "^1.0.5",
+ "@0xproject/sol-compiler": "^1.0.5",
+ "@0xproject/utils": "^1.0.5",
+ "ethereum-types": "^1.0.4",
+ "lodash": "^4.17.10"
+ },
+ "devDependencies": {
+ "chai": "^4.1.2",
+ "chai-as-promised": "^7.1.0",
+ "chai-bignumber": "^2.0.2",
+ "dirty-chai": "^2.0.1",
+ "make-promises-safe": "^1.1.0",
+ "mocha": "^5.2.0",
+ "shx": "^0.2.2",
+ "source-map-support": "^0.5.0",
+ "tslint": "5.11.0"
+ }
+}