-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.48 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
56
57
58
59
{
"name": "generator-napi-module",
"version": "0.3.0",
"description": "A yeoman generator to create a next-generation Node native module using N-API",
"homepage": "https://github.com/digitalinfinity/generator-napi-module",
"author": {
"name": "Hitesh Kanwathirtha",
"email": "[email protected]",
"url": "https://github.com/digitalinfinity"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"napi",
"node",
"native module",
"addon"
],
"devDependencies": {
"@types/init-package-json": "^1.10.0",
"@types/node": "^10.12.2",
"@types/uppercamelcase": "^3.0.0",
"@types/write-file-atomic": "^2.1.1",
"@types/yeoman-generator": "^3.0.0",
"@types/yosay": "0.0.29",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"dependencies": {
"chalk": "^2.4.1",
"init-package-json": "^1.10.3",
"uppercamelcase": "^3.0.0",
"write-file-atomic": "^2.3.0",
"yeoman-generator": "^3.1.1",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"templates/__tests__"
]
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"pretest": "tslint --project .",
"test": "jest"
},
"repository": "digitalinfinity/generator-napi-module",
"license": "MIT"
}