forked from CodeChain-io/codechain-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.93 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
{
"name": "codechain-sdk",
"version": "0.1.0-alpha.10",
"description": "A JavaScript SDK for CodeChain",
"scripts": {
"lint": "tsfmt --verify",
"build": "rollup -c rollup.config.ts",
"test": "npm run lint && jest --env node",
"test-int": "npm run-script build && jest --env node --roots integration_tests",
"docs": "typedoc --out gh-pages/0.1.0-alpha --name \"CodeChain JavaScript SDK\" --mode file --readme API.md --excludePrivate --excludeProtected",
"docs-dev": "nodemon -e ts --watch src --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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kodebox-io/codechain-sdk-js.git"
},
"author": "CodeChain Team <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kodebox-io/codechain-sdk-js/issues"
},
"homepage": "https://github.com/kodebox-io/codechain-sdk-js#readme",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"bignumber.js": "^6.0.0",
"blakejs": "^1.1.0",
"elliptic": "^6.4.0",
"jayson": "^2.0.6",
"lodash": "^4.17.10",
"node-fetch": "^2.1.2",
"ripemd160": "^2.0.2",
"rlp": "^2.0.0"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.108",
"@types/node": "^9.6.6",
"@types/node-fetch": "^2.1.1",
"jest": "^22.4.3",
"nodemon": "^1.17.5",
"rollup": "^0.60.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.14.0",
"ts-jest": "^22.4.4",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.8.3",
"typescript-formatter": "^7.2.2"
}
}