-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.42 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
{
"name": "bare-make",
"version": "1.3.1",
"description": "Opinionated build system generator based on CMake",
"exports": {
".": "./index.js",
"./package": "./package.json",
"./errors": "./lib/errors.js",
"./build": "./lib/build.js",
"./generate": "./lib/generate.js",
"./install": "./lib/install.js",
"./test": "./lib/test.js"
},
"bin": {
"bare-make": "bin.js"
},
"files": [
"index.js",
"bin.js",
"lib"
],
"imports": {
"os": {
"bare": "bare-os",
"default": "os"
},
"path": {
"bare": "bare-path",
"default": "path"
},
"process": {
"bare": "bare-process",
"default": "process"
}
},
"scripts": {
"test": "prettier . --check && bare test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-make.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-make/issues"
},
"homepage": "https://github.com/holepunchto/bare-make#readme",
"dependencies": {
"bare-env": "^3.0.0",
"bare-os": "^3.2.0",
"bare-path": "^3.0.0",
"bare-process": "^4.0.0",
"cmake-runtime": "^3.31.0",
"cmake-toolchains": "^1.0.1",
"ninja-runtime": "^1.12.2-0",
"paparam": "^1.5.0"
},
"devDependencies": {
"brittle": "^3.2.1",
"prettier": "^3.4.1",
"prettier-config-standard": "^7.0.0"
}
}