-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.26 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "audit-app",
"version": "0.8.1",
"description": "A cli tool for auditing apps & packages using their respective package managers.",
"keywords": [
"ci",
"audit",
"audit-app",
"auditapp",
"audit-runner",
"auditrunner",
"auditer",
"app"
],
"homepage": "https://github.com/G-Rath/audit-app#readme",
"bugs": {
"url": "https://github.com/G-Rath/audit-app/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/G-Rath/audit-app.git"
},
"license": "ISC",
"author": "Gareth Jones",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "lib/cli.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/",
"config.schema.json"
],
"scripts": {
"build": "rm -rf lib/* && tsc -p tsconfig.build.json",
"cli": "ts-node -T src/cli.ts",
"lint": "eslint . --ignore-pattern '!.eslintrc.js' --ext js,ts",
"prepack": "npm run build",
"prepare": "echo",
"test": "jest",
"tools:generate-fixture-data": "tools/generate-fixture-data.ts",
"typecheck": "ttsc -p . --noEmit"
},
"prettier": "prettier-config-ackama",
"dependencies": {
"chalk": "^4.1.0",
"readline-transform": "^1.0.0",
"semver": "^7.0.0",
"strip-ansi": "^6.0.0",
"wrap-ansi": "^7.0.0",
"yargs": "^16.0.3"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/eslint": "^8.4.5",
"@types/jest": "^28.1.6",
"@types/node": "^14.18.22",
"@types/readline-transform": "^1.0.1",
"@types/semver": "^7.3.10",
"@types/wrap-ansi": "^3.0.0",
"@types/yargs": "^16.0.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"ajv": "^8.6.2",
"eslint": "^8.20.0",
"eslint-config-ackama": "^3.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"memfs": "^3.2.0",
"prettier": "^2.7.1",
"prettier-config-ackama": "^1.1.0",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.13",
"typescript": "^4.7.4",
"unionfs": "^4.4.0"
}
}