-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
{
"name": "codechain-rpc",
"version": "2.0.0",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "https://github.com/CodeChain-io/codechain-rpc-js",
"description": "A thin wrapper of CodeChain RPC",
"author": "CodeChain Team <codechain@kodebox.io>",
"license": "ISC",
"private": false,
"engines": {
"node": ">=8"
},
"scripts": {
"build": "tsc -p .",
"fmt": "prettier {src,e2e}/**/*.ts --write --print-width 120 && tslint -p . --fix",
"lint": "tslint -p . && prettier {src,e2e}/**/*.ts -l --print-width 120",
"test": "mocha -r ts-node/register --timeout 5000 e2e/**/*.test.ts"
},
"files": [
"build"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/elliptic": "^6.4.8",
"@types/lodash": "^4.14.133",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"elliptic": "^6.4.1",
"eslint": "^5.16.0",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"prettier": "^1.17.1",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@types/node-fetch": "^2.3.4",
"node-fetch": "^2.6.0"
}
}