This repository has been archived by the owner on Apr 20, 2020. It is now read-only.
forked from CITA-Toys/web3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@nervos/web3",
"version": "0.17.38",
"main": "lib/index.js",
"repository": "https://github.com/cryptape/web3",
"author": "Keith <[email protected]>",
"license": "MIT",
"scripts": {
"protoc": "protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --proto_path=cita-proto --ts_out=./proto-ts --js_out=import_style=commonjs,binary:./proto-ts cita-proto/blockchain.proto",
"start": "nodemon --config nodemon.json",
"debug": "node debug/index.js",
"build": "tsc && browserify",
"docs": "typedoc --out ./documents/ ./src/",
"test": "jest",
"example": "node examples/deploy.js",
"browserify": "browserify ./lib/browser.js -o ./lib/bundle.js && minify ./lib/bundle.js -d ./lib/",
"precommit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"docs": "typedoc --theme markdown",
"devDependencies": {
"@types/google-protobuf": "^3.2.7",
"@types/node": "^10.1.4",
"@types/underscore": "^1.8.8",
"babel-minify": "^0.4.3",
"browserify": "^16.2.2",
"chalk": "^2.4.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-typescript": "^0.12.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.1.2",
"nodemon": "^1.17.5",
"prettier": "^1.13.3",
"ts-node": "^6.0.5",
"ts-protoc-gen": "^0.7.3",
"typedoc": "^0.11.1",
"types-bn": "^0.0.1",
"typescript": "^2.8.4",
"typescript-eslint-parser": "^15.0.0",
"utf8": "^3.0.0"
},
"dependencies": {
"@nervos/signer": "^1.0.19",
"axios": "^0.18.0",
"crypto-js": "^3.1.9-1",
"elliptic": "^6.4.0",
"google-protobuf": "^3.5.0",
"web3": "^1.0.0-beta.34"
}
}