-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "json-rpc-wrapper",
"version": "1.0.1",
"description": "A simple json rpc 2.0 wrapper for any object",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"docs": "rm ./docs/DEFINITIONS.md && node_modules/.bin/jsdoc2md --no-cache --files ./src/*.js ./src/**/*.js >> docs/DEFINITIONS.md",
"format": "./node_modules/.bin/standard --fix",
"lint": "./node_modules/.bin/standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test ./node_modules/.bin/mocha ./test/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vigan-abd/json-rpc-wrapper.git"
},
"keywords": [
"json-rpc",
"rpc",
"wrapper",
"json"
],
"author": "Vigan Abdurrahmani <[email protected]> (https://github.com/vigan-abd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vigan-abd/json-rpc-wrapper/issues"
},
"homepage": "https://github.com/vigan-abd/json-rpc-wrapper#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"husky": "^4.2.5",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.1.1",
"standard": "^14.3.3"
},
"standard": {
"globals": [
"it",
"describe",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}