generated from voxpelli/node-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
{
"name": "@voxpelli/webring-opml",
"version": "0.0.0",
"private": true,
"description": "Generates OPML files for a webri.ng",
"homepage": "http://github.com/voxpelli/webring-opml",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/webring-opml.git"
},
"keywords": [],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "MIT",
"engines": {
"node": "^20.9.0 || >=21.1.0"
},
"bin": "cli.js",
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"cli.js",
"index.js",
"index.d.ts",
"index.d.ts.map"
],
"scripts": {
"build:0": "run-s clean",
"build:1-declaration": "tsc -p declaration.tsconfig.json",
"build": "run-s build:*",
"check:installed-check": "installed-check",
"check:knip": "knip",
"check:lint": "eslint --report-unused-disable-directives .",
"check:tsc": "tsc",
"check": "run-s clean && run-p check:*",
"clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*' ! -name 'advanced-types.d.ts')",
"clean": "run-p clean:*",
"prepare": "husky",
"prepublishOnly": "run-s build",
"test:run": "node cli.js test-output cssjoy",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"got": "^14.4.2"
},
"devDependencies": {
"@types/node": "^20.14.13",
"@voxpelli/eslint-config": "^20.0.1",
"@voxpelli/tsconfig": "^13.0.0",
"eslint": "^9.8.0",
"husky": "^9.1.4",
"installed-check": "^9.3.0",
"knip": "^5.27.0",
"npm-run-all2": "^6.2.2",
"typescript": "~5.5.4"
}
}