-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "daizong",
"version": "0.28.1",
"description": "`package.json` script runner for ES Modules",
"type": "module",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"author": "Mgenware (https://github.com)",
"homepage": "https://github.com/mgenware/daizong",
"bugs": "https://github.com/mgenware/daizong/issues",
"keywords": [
"task runner"
],
"bin": {
"daizong": "./dist/main.js",
"dz": "./dist/dz.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mgenware/daizong.git"
},
"license": "MIT",
"scripts": {
"test": "npm run clean && npm run compile && npm run lint && npm run t",
"t": "mocha --parallel --require source-map-support/register --timeout 10000 dist_tests/**/*.test.js",
"compile": "tsc -b tests",
"dev": "npm run clean && tsc -b tests -w",
"lint": "eslint --max-warnings 0 --ext .ts src/ tests/",
"clean": "rimraf dist dist_tests"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/dist/**/*.js",
"/dist/**/*.ts",
"/dist/**/*.css",
"/dist/**/*.map"
],
"dependencies": {
"chalk": "^5.3.0",
"del": "^8.0.0",
"execa": "^9.4.1",
"p-map": "^7.0.2"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-mgenware": "^0.10.0",
"eslint-plugin-import": "^2.28.1",
"is-wsl": "^3.1.0",
"mgenware-tsconfig-core": "^20.0.0",
"mocha": "^10.2.0",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"typescript": "^5.2.2"
}
}