-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "llvm-bindings",
"version": "0.4.2",
"description": "LLVM bindings for Node.js/JavaScript/TypeScript",
"keywords": [
"llvm",
"llvm-bindings",
"llvm-node",
"llvm-ts",
"llvm-typescript",
"llvm-js",
"llvm-javascript"
],
"license": "MIT",
"author": "ApsarasX",
"main": "index.js",
"types": "llvm-bindings.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ApsarasX/llvm-bindings.git"
},
"scripts": {
"postinstall": "cmake-js compile",
"build:debug": "cmake-js build -D",
"build:release": "cmake-js build",
"clear": "rimraf build",
"test:legacy": "ts-node test/index.ts",
"test": "npm run test:legacy && jest --verbose",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"release:patch": "npm version patch -m 'release: release v%s'",
"release:minor": "npm version minor -m 'release: release v%s'",
"release:major": "npm version major -m 'release: release v%s'"
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^6.3.2",
"node-addon-api": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"conventional-changelog-cli": "^2.2.2",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest"
}
}