-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
62
{
"name": "jcc_rpc",
"version": "0.3.2",
"description": "rpc api of jcc",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"deploy": "./publish.sh",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "npm run test:node",
"test:node": "tsc && nyc --extension=.ts --reporter=lcov --reporter=html --reporter=text mocha --timeout=3000 test/*.spec.js",
"tslint": "tslint --project tsconfig.json --config tslint.json",
"pretty": "prettier --write {src,test}/**/*.{js,ts}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCCDex/jcc_rpc.git"
},
"keywords": [
"rpc",
"api",
"jcc",
"decentralized",
"cross-chain",
"exchange"
],
"author": "JCCDex",
"license": "MIT",
"bugs": {
"url": "https://github.com/JCCDex/jcc_rpc/issues"
},
"homepage": "https://github.com/JCCDex/jcc_rpc#readme",
"dependencies": {
"@types/node": "^13.7.7",
"axios": "^0.19.2",
"jcc_common": "0.1.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.17.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"gulp": "^4.0.2",
"gulp-shell": "^0.7.1",
"husky": "^4.2.3",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"sinon": "^9.0.0",
"ts-loader": "^6.2.1",
"tslint": "^6.0.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run tslint && pretty-quick --staged"
}
}
}