This repository has been archived by the owner on Apr 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.76 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@appland/scanner",
"version": "1.52.4",
"description": "",
"bin": "built/cli.js",
"files": [
"built",
"doc"
],
"scripts": {
"build": "mkdir -p built && cp -r src/sampleConfig built && tsc && yarn schema && yarn doc",
"build-native": "yarn build && ./bin/build-native",
"start": "ts-node src/cli.ts",
"doc": "ts-node ./bin/verify-rules-doc.ts && ts-node ./bin/verify-labels-doc.ts && ts-node ./bin/front-matter.ts",
"schema": "./bin/schema",
"schema-up-to-date": "git diff --exit-code src/configuration/schema/options.json",
"doc-up-to-date": "git diff --exit-code doc/",
"lint": "eslint src --ext .ts",
"ci": "yarn lint && yarn build && yarn schema-up-to-date && yarn doc-up-to-date && yarn test",
"test": "jest",
"semantic-release": "semantic-release"
},
"author": "AppLand, Inc.",
"license": "Commons Clause + MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/async": "^3.2.12",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.1",
"@types/js-yaml": "^4.0.3",
"@types/lru-cache": "^5.1.1",
"@types/node": "^16.7.10",
"@types/sinon": "^10.0.11",
"@types/tar-stream": "^2.2.2",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.4.7",
"nock": "^13.2.2",
"openapi-types": "^9.3.0",
"pkg": "^5.5.2",
"prettier": "^2.3.2",
"semantic-release": "^19.0.2",
"sinon": "^13.0.1",
"ts-jest": "^27.1.3",
"ts-json-schema-generator": "^0.97.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@appland/client": "^1.3.0",
"@appland/models": "^1.14.5",
"@appland/sql-parser": "^1.5.0",
"ajv": "^8.8.2",
"ansi-escapes": "^5.0.0",
"async": "^3.2.3",
"chalk": "^4.1.2",
"form-data": "^4.0.0",
"glob": "^7.2.0",
"js-yaml": "^4.1.0",
"lru-cache": "^6.0.0",
"minimatch": "^3.0.4",
"octokat": "^0.10.0",
"openapi-diff": "^0.23.5",
"pretty-format": "^27.4.6",
"supports-hyperlinks": "^2.2.0",
"tar-stream": "^2.2.0",
"yargs": "^17.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/applandinc/scanner.git"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"pkg": {
"targets": [
"node14-linux-x64",
"node14-win-x64",
"node14-macos-x64"
],
"scripts": [
"built/scanner/*.js"
],
"assets": [
"built/sampleConfig/*.yml",
"built/**/*.json"
],
"outputPath": "dist"
}
}