-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "allchange",
"version": "1.1.0",
"main": "lib/index.js",
"license": "Apache-2.0",
"scripts": {
"prepare": "tsc",
"start": "ts-node src/index.ts",
"lint": "yarn run lint:types && yarn run lint:js",
"lint:js": "eslint src",
"lint:types": "tsc --noEmit",
"test": "jest"
},
"files": [
"/lib/",
"/LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/matrix-org/allchange.git"
},
"bin": {
"allchange": "lib/index.js"
},
"jest": {
"testMatch": [
"<rootDir>/src/*-test.ts"
],
"preset": "ts-jest"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"@octokit/rest": "^18.6.7",
"cli-color": "^2.0.0",
"js-yaml": "^4.1.0",
"loglevel": "^1.7.1",
"semver": "^7.3.5",
"yargs": "^17.5.1"
},
"devDependencies": {
"@octokit/types": "^6.18.1",
"@types/cli-color": "^2.0.2",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.0",
"@types/semver": "^7.3.8",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-matrix-org": "github:matrix-org/eslint-plugin-matrix-org#main",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}