-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "hellodog",
"version": "3.0.0",
"description": "Record and log all socket transactions that occur for a specific period of time",
"gypfile": true,
"main": "index.js",
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"test": "NODE_NO_WARNINGS=1 node test/index.js",
"lint": "eslint --ext .js . --fix"
},
"homepage": "https://github.com/kellym/hellodog",
"author": "Kelly Martin <[email protected]>",
"license": "ISC",
"dependencies": {
"node-addon-api": "^4.3.0",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git://github.com/kellym/hellodog.git"
},
"bugs": {
"url": "https://github.com/kellym/hellodog/issues"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"express": "^4.17.1",
"fs-mock": "^1.2.1",
"ftp": "^0.3.10",
"ftpd": "^0.2.16",
"node-gyp": "^9.0.0",
"pem": "^1.9.4"
}
}