forked from ddanielcruz/node-sitef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-sitef",
"version": "1.4.0",
"repository": "https://github.com/danielccunha/node-sitef",
"homepage": "https://github.com/danielccunha/node-sitef",
"author": {
"name": "Daniel Cunha",
"email": "danielcunha54@gmail.com",
"url": "https://github.com/danielccunha"
},
"license": "GPL-3.0",
"bugs": "https://github.com/danielccunha/node-sitef/issues",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"publish": "npm publish --access public",
"example:basic": "ts-node example/basic",
"example:client": "ts-node example/client"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/chalk": "^2.2.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"moment": "^2.26.0",
"node-gyp": "^6.0.1",
"prettier": "^2.0.5",
"readline": "^1.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"contributors": [
{
"name": "Daniel Cunha",
"email": "danielcunha54@gmail.com",
"url": "https://github.com/danielccunha"
},
{
"name": "Felipe Furst",
"email": "fefurst@gmail.com",
"url": "https://github.com/fefurst"
}
],
"files": [
"dist/**/*",
"build/**/*",
"lib/**/*",
"src/**/*",
"LICENSE",
"README.md",
"package.json"
]
}