-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
52 lines (52 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
{
"name": "llvm-node",
"version": "3.0.0",
"description": "Node Bindings for LLVM >=4.0",
"author": "Micha Reiser <micha@famreiser.ch>",
"repository": "https://github.com/MichaReiser/llvm-node.git",
"license": "MIT",
"main": "index.js",
"typings": "./llvm-node.d.ts",
"engines": {
"node": ">=6.0"
},
"engineStrict": true,
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/requirejs": "^2.1.32",
"generate-changelog": "^1.8.0",
"jest": "^26.6.3",
"node-gyp": "^8.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^6.1.0",
"nan": "^2.14.2"
},
"scripts": {
"configure": "cmake-js configure",
"build": "cmake-js compile",
"install": "cmake-js compile",
"clean": "cmake-js clean",
"rebuild": "cmake-js rebuild",
"test": "jest",
"test:watch": "jest --watchAll",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}