-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2 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": "license-filter",
"version": "0.2.4",
"license": "LGPL-3.0",
"author": "[email protected]",
"description": "Open-source licenses filter algorithm library written in TypeScript",
"keywords": [
"open-source",
"license",
"filter",
"select",
"algorithm",
"typescript"
],
"homepage": "https://kaiyuanshe.github.io/Open-Source-License-filter/",
"repository": {
"type": "git",
"url": "git+https://github.com/kaiyuanshe/Open-Source-License-filter.git"
},
"bugs": {
"url": "https://github.com/kaiyuanshe/Open-Source-License-filter/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"dependencies": {
"@swc/helpers": "^0.5.3"
},
"devDependencies": {
"@parcel/packager-ts": "^2.10.2",
"@parcel/transformer-typescript-types": "^2.10.2",
"@types/jest": "^29.5.7",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"open-cli": "^7.2.0",
"parcel": "~2.10.2",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.3",
"typedoc-plugin-mdn-links": "^3.1.0",
"typescript": "~5.2.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"jest": {
"preset": "ts-jest"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged && jest",
"build": "rm -rf dist/ docs/ && typedoc source/ && parcel build",
"start": "typedoc source/ && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
}
}