-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 983 Bytes
/
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
{
"name": "drpcjs",
"version": "1.1.1",
"description": "Apache storm DRPC client for Node.js",
"keywords": [
"drpc",
"drpcjs",
"node-drpc",
"storm",
"storm-node"
],
"homepage": "https://github.com/iamnapo/drpcjs#readme",
"bugs": {
"url": "https://github.com/iamnapo/drpcjs/issues"
},
"repository": "github:iamnapo/drpcjs",
"license": "MIT",
"author": {
"name": "Napoleon Oikonomou",
"email": "[email protected]",
"url": "https://iamnapo.me"
},
"files": [
"index.js",
"src"
],
"main": "index.js",
"scripts": {
"lint": "eslint . --cache",
"start": "node index.js",
"test": "npm run lint"
},
"eslintConfig": {
"extends": "iamnapo",
"rules": {
"unicorn/prefer-module": "off"
}
},
"dependencies": {
"node-int64": "^0.4.0"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-iamnapo": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-unicorn": "^32.0.1"
},
"engines": {
"node": ">=12"
}
}