-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 779 Bytes
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
{
"name": "@jaandrle/bs",
"version": "1.0.0",
"description": "The simplest possible build system using executable/bash scripts",
"author": "Jan Andrle <andrle.jan@centrum.cz>",
"license": "MIT",
"homepage": "https://github.com/jaandrle/bs",
"repository": {
"type": "git",
"url": "git+https://github.com/jaandrle/bs.git"
},
"bugs": {
"url": "https://github.com/jaandrle/bs/issues"
},
"bin": {
"bs": "bs.js"
},
"type": "commonjs",
"main": "bs.js",
"scripts": {
"build": "bs/build"
},
"keywords": [
"build-system",
"bash",
"cli"
],
"files": [
"src"
],
"devDependencies": {
"pkg": "~5.8"
},
"dependencies": {
"css-in-console": "~1.2",
"sade": "~1.8"
},
"engines": {
"node": ">=18.19"
},
"pkg": {
"assets": "./package.json"
}
}