-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"packageManager": "npm@8.19.2",
"name": "@hanazuki/node-jsonnet",
"version": "2.1.0",
"description": "Jsonnet addon for Node.js",
"bugs": "https://github.com/hanazuki/node-jsonnet/issues",
"homepage": "https://github.com/hanazuki/node-jsonnet",
"repository": {
"type": "git",
"url": "https://github.com/hanazuki/node-jsonnet"
},
"license": "MIT AND Apache-2.0",
"type": "commonjs",
"main": "./lib/index.js",
"exports": {
".": {
"require": "./lib/index.js",
"default": "./lib/module.mjs"
}
},
"types": "./types/index.d.ts",
"files": [
"/**/CMakeLists.txt",
"/**/LICENSE",
"/**/LICENSE.txt",
"/*.md",
"/examples/",
"/lib/",
"/types/*.d.ts",
"/src/",
"/spec/",
"/third_party/jsonnet/CMakeLists.txt.in",
"/third_party/jsonnet/include/*.h",
"/third_party/jsonnet/core/*.c",
"/third_party/jsonnet/core/*.cpp",
"/third_party/jsonnet/core/*.h",
"/third_party/jsonnet/cmd/*.cpp",
"/third_party/jsonnet/cmd/*.h",
"/third_party/jsonnet/cpp/*.cpp",
"/third_party/jsonnet/cpp/*.h",
"/third_party/jsonnet/third_party/json/*.hpp",
"/third_party/jsonnet/third_party/md5/*.cpp",
"/third_party/jsonnet/third_party/md5/*.h",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/**/README.md",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/src/**/*.hpp",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/src/**/*.cpp",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/ext/c4core/src/**/*.cpp",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/ext/c4core/src/**/*.h",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/ext/c4core/src/**/*.hpp",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/ext/c4core/cmake/**/*.cmake",
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/**/*.natvis",
"/third_party/jsonnet/stdlib/*.cpp",
"/third_party/jsonnet/stdlib/*.jsonnet",
"/third_party/jsonnet/test_suite/"
],
"keywords": [
"jsonnet",
"node-addon",
"native",
"bindings"
],
"scripts": {
"install": "cmake-js build --CDCMAKE_EXPORT_COMPILE_COMMANDS=1",
"test": "jasmine",
"lint": "dtslint types",
"format": "clang-format -i src/*",
"cpplint": "cpplint --filter=-,+build,+runtime,-runtime/indentation_namespace src/*",
"cmake-verbose": "cmake-js rebuild -l verbose --CDCMAKE_VERBOSE_MAKEFILE=1"
},
"engines": {
"node": ">=14"
},
"binary": {
"napi_versions": [
6
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:@definitelytyped/all"
],
"rules": {
"@definitelytyped/dt-header": "off"
}
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^7.3.0",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"@definitelytyped/dtslint": "^0.0.182",
"@definitelytyped/eslint-plugin": "^0.1.0",
"@types/node": "*",
"glob": "^10.0.0",
"jasmine": "^5.1.0",
"ts-node": "^10.0.0",
"typedoc": "^0.26.2",
"typescript": "^5.0.2"
}
}