-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.45 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
65
66
67
68
69
70
{
"name": "koatty_loader",
"version": "1.1.0",
"description": "Efficient glob library for Koatty.",
"scripts": {
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
"build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
"build:js": "del-cli --force dist && npx rollup --bundleConfigAsCjs -c .rollup.config.js",
"build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api",
"build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
"eslint": "eslint --ext .ts,.js ./",
"lock": "npm i --package-lock-only",
"prepublishOnly": "npm test && npm run build",
"prerelease": "npm test && npm run build",
"release": "standard-version",
"release:pre": "npm run release -- --prerelease",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"pub": "git push --follow-tags origin && npm publish",
"test": "npm run eslint && jest --passWithNoTests",
"test:cov": "jest --collectCoverage --detectOpenHandles",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"engines": {
"node": ">12.0.0"
},
"author": "",
"license": "BSD-3-Clause",
"devDependencies": {
"@commitlint/cli": "^18.x.x",
"@commitlint/config-conventional": "^18.x.x",
"@microsoft/api-documenter": "^7.x.x",
"@microsoft/api-extractor": "^7.x.x",
"@rollup/plugin-json": "^6.x.x",
"@types/globby": "^9.x.x",
"@types/jest": "^29.x.x",
"@types/koa": "^2.x.x",
"@types/node": "^18.x.x",
"@typescript-eslint/eslint-plugin": "^6.x.x",
"@typescript-eslint/parser": "^6.x.x",
"conventional-changelog-cli": "^4.x.x",
"copyfiles": "^2.x.x",
"del-cli": "^5.x.x",
"eslint": "^8.x.x",
"eslint-plugin-jest": "^27.x.x",
"husky": "^4.x.x",
"jest": "^29.x.x",
"jest-html-reporters": "^3.x.x",
"reflect-metadata": "^0.x.x",
"rollup": "^3.x.x",
"rollup-plugin-typescript2": "^0.x.x",
"standard-version": "^9.x.x",
"ts-jest": "^29.x.x",
"ts-node": "^10.x.x",
"tslib": "^2.x.x",
"typescript": "^5.x.x"
},
"dependencies": {
"globby": "^11.1.0",
"koatty_lib": "^1.x.x"
},
"peerDependencies": {
"koatty_lib": "^1.x.x"
}
}