-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 KB
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
{
"name": "license-ripper",
"version": "0.10.1",
"description": "Collects license text from LICENSE and README files for generating attribution pages.",
"repository": "https://github.com/ArthurCose/License-Ripper",
"author": "Arthur Cosentino",
"license": "ISC",
"keywords": [
"license",
"cli"
],
"type": "module",
"bin": {
"license-ripper": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"bin.js"
],
"scripts": {
"dev": "npm run build && node dist/cli.js",
"build": "tsc",
"test": "npm run build && ava --serial",
"fresh-test": "rimraf package-lock.json test/pm-structures node_modules; npm i && npm run dev -- --summary --config license-ripper-config.json; ava --serial",
"prepublishOnly": "rimraf dist && tsc && npm run test"
},
"dependencies": {
"chalk": "5.3",
"marked": "16",
"node-fetch": "3",
"spdx-correct": "3",
"spdx-satisfies": "5"
},
"devDependencies": {
"@ava/typescript": "^5",
"@types/fs-extra": "^11",
"@types/node": "^22.12.0",
"@types/spdx-correct": "^3",
"@types/spdx-satisfies": "^0.1",
"ava": "^6.2",
"fs-extra": "^11",
"rimraf": "^6",
"tsimp": "^2",
"typescript": "^5.5"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp/import"
]
}
}