forked from holepunchto/bare-make
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.18 KB
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
{
"name": "bare-make",
"version": "1.6.3",
"description": "Opinionated build system generator based on CMake",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./errors": {
"types": "./lib/errors.d.ts",
"default": "./lib/errors.js"
},
"./build": {
"types": "./lib/build.d.ts",
"default": "./lib/build.js"
},
"./generate": {
"types": "./lib/generate.d.ts",
"default": "./lib/generate.js"
},
"./install": {
"types": "./lib/install.d.ts",
"default": "./lib/install.js"
},
"./test": {
"types": "./lib/test.d.ts",
"default": "./lib/test.js"
},
"./package": "./package.json"
},
"bin": {
"bare-make": "bin.js"
},
"files": [
"index.js",
"index.d.ts",
"bin.js",
"lib"
],
"imports": {
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"os": {
"bare": "bare-os",
"default": "os"
},
"path": {
"bare": "bare-path",
"default": "path"
},
"process": {
"bare": "bare-process",
"default": "process"
}
},
"scripts": {
"test": "npm run lint && npm run test:bare && npm run test:node",
"test:bare": "bare test.js",
"test:node": "node test.js",
"lint": "prettier . --check"
},
"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-fs": "^4.4.4",
"bare-os": "^3.2.0",
"bare-path": "^3.0.0",
"bare-process": "^4.0.0",
"cmake-runtime": "^4.1.1",
"cmake-toolchains": "^1.0.1",
"ninja-runtime": "^1.13.1",
"paparam": "^1.5.0"
},
"devDependencies": {
"bare-pipe": "^4.0.4",
"brittle": "^3.2.1",
"prettier": "^3.4.1",
"prettier-config-standard": "^7.0.0",
"which-runtime": "^1.3.2"
},
"peerDependencies": {
"bare-pipe": "*"
},
"peerDependenciesMeta": {
"bare-pipe": {
"optional": true
}
}
}