-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "go-text-template-napi",
"version": "0.0.5",
"description": "Node-API bindings for Go's text/template package",
"repository": {
"type": "git",
"url": "git+https://github.com/drakedevel/go-text-template-napi.git"
},
"license": "Apache-2.0",
"author": "Andrew Drake <[email protected]>",
"main": "index.js",
"types": "index.d.ts",
"binary": {
"module_name": "go_text_template_napi_binding",
"module_path": "lib/napi-v{napi_build_version}",
"remote_path": "v{version}",
"package_name": "{platform}-{arch}-napi-v{napi_build_version}.tar.gz",
"host": "https://github.com/drakedevel/go-text-template-napi/releases/download/",
"napi_versions": [
8
]
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"prettier": "prettier -w .",
"test": "jest"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10"
},
"devDependencies": {
"@tsconfig/node18": "18.2.4",
"@tsconfig/strictest": "2.0.5",
"@types/jest": "29.5.14",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || ^15.12.0 || >=16"
},
"os": [
"darwin",
"linux"
]
}