-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 1.89 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
{
"name": "cmake-ts",
"version": "0.3.0",
"description": "cmake-js rewrite in typescript to support advanced build configurations",
"main": "build/lib.js",
"bin": "build/main.js",
"scripts": {
"lint": "npm run test.lint -- --fix",
"test.lint": "eslint .",
"deps": "npm-check -p",
"devdeps": "npm-check -ds",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc -w",
"build": "shx rm -rf build && tsc",
"prepare": "npm run build"
},
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.d.ts",
"build/**/*.d.ts.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EmbeddedEnterprises/cmake-ts.git"
},
"keywords": [
"cmake",
"nan",
"node",
"native",
"addon",
"build",
"cmake-js"
],
"author": "Martin Koppehel",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmbeddedEnterprises/cmake-ts/issues"
},
"homepage": "https://github.com/EmbeddedEnterprises/cmake-ts#readme",
"devDependencies": {
"@types/fs-extra": "~11.0.4",
"@types/lodash": "~4.17.12",
"@types/minizlib": "~2.1.7",
"@types/node": "^22.7.9",
"@types/npmlog": "~7.0.0",
"@types/request": "~2.48.12",
"@types/resolve": "~1.20.6",
"@types/semver": "~7.5.8",
"@types/tar": "^6.1.13",
"@types/unzipper": "~0.10.10",
"@types/url-join": "~4.0.3",
"@types/which": "~3.0.4",
"eslint-config-atomic": "^1.22.1",
"npm-check": "^6.0.1",
"shx": "^0.3.4",
"typescript": "^5.6.3"
},
"dependencies": {
"@cypress/request": "^3.0.5",
"fast-glob": "^3.3.2",
"fs-extra": "^10",
"lodash": "^4.17.21",
"memory-stream": "1.0.0",
"minizlib": "^2",
"npmlog": "^6",
"resolve": "^1.22.8",
"semver": "^7.6.3",
"splitargs2": "^0.1.3",
"tar": "^6",
"unzipper": "^0.12.3",
"url-join": "^4.0.1",
"which": "^2"
}
}