-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 2.08 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
61
{
"name": "codechain-sdk",
"version": "2.0.1",
"description": "A JavaScript SDK for CodeChain",
"scripts": {
"lint": "tslint -p . && prettier '{src,examples,integration_tests}/**/*.{ts,js,json}' -l",
"fmt": "tslint -p . --fix && prettier '{src,examples,integration_tests}/**/*.{ts,js,json}' --write",
"build": "tsc -p .",
"test": "jest --env node",
"test-int": "yarn build && jest -i --env node --roots integration_tests --globals '{\"ts-jest\":{\"diagnostics\":{\"warnOnly\":true}}}'",
"posttest": "yarn lint",
"docs": "typedoc --out gh-pages/$npm_package_version --name \"CodeChain JavaScript SDK\" --mode file --readme API.md --excludePrivate --excludeProtected",
"docs-dev": "nodemon -e ts --watch src --watch API.md --exec 'yarn docs'",
"docs-prepare": "[ -d 'gh-pages' ] || git clone -b gh-pages [email protected]:CodeChain-io/codechain-sdk-js.git gh-pages && cd gh-pages && git pull",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeChain-io/codechain-sdk-js.git"
},
"author": "CodeChain Team <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeChain-io/codechain-sdk-js/issues"
},
"homepage": "https://github.com/CodeChain-io/codechain-sdk-js#readme",
"engines": {
"node": ">=8"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"buffer": "^5.2.1",
"codechain-keystore": "^0.6.0",
"codechain-primitives": "^1.0.0",
"jayson": "^2.0.6",
"lodash": "^4.17.14",
"node-fetch": "^2.1.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rlp": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.108",
"@types/node": "^9.6.6",
"@types/node-fetch": "2.1.2",
"@types/request-promise": "^4.1.42",
"jest": "^23.5.0",
"nodemon": "^1.17.5",
"prettier": "1.14.2",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.14.2",
"typescript": "^3.3"
}
}