-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 829 Bytes
/
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
{
"name": "juke-build",
"version": "0.9.0",
"description": "The AKE-less Build System for JavaScript and Node.js.",
"keywords": [
"build",
"tool",
"automation",
"task",
"runner",
"make",
"nuke"
],
"homepage": "https://github.com/stylemistake/juke-build",
"license": "MIT",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"prepack": "./build.mjs build"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/minimatch": "^3.0.5",
"@types/node": "^14.17.9",
"@yarnpkg/esbuild-plugin-pnp": "^1.0.0",
"chalk": "^4.1.2",
"dts-bundle-generator": "^5.9.0",
"esbuild": "^0.12.19",
"glob": "^7.1.7",
"stringcase": "^4.3.1",
"typescript": "^4.3.5"
}
}