-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 918 Bytes
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
{
"name": "create-vs-napi",
"version": "0.0.3",
"license": "Apache-2.0",
"description": "Visual Studio 2017 Node.js addon generator",
"keywords": [
"Visual Studio 2017",
"Node.js",
"C++",
"N-API"
],
"engines": {
"node": ">= 10.0.0"
},
"engineStrict": true,
"main": "lib/main.js",
"bin": "lib/bin.js",
"author": {
"name": "Bill Ticehurst <billti@hotmail.com>"
},
"bugs": {
"url": "https://github.com/billti/create-vs-napi/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/billti/create-vs-napi.git"
},
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.1.2",
"@types/node-fetch": "^1.6.9",
"@types/tar": "^4.0.0",
"@types/uuid": "^3.4.3"
},
"dependencies": {
"commander": "^2.15.1",
"mkdirp": "^0.5.1",
"node-fetch": "^2.1.2",
"tar": "^4.4.4",
"uuid": "^3.2.1"
}
}