This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.65 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
99
100
{
"name": "@onezerocompany/versioning",
"bin": "dist/validate/validate.js",
"repository": {
"type": "git",
"url": "https://github.com/onezerocompany/versioning.git"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "OneZero Company",
"email": "support@onezero.company",
"url": "https://github.com/onezerocompany"
},
"license": "MIT",
"scripts": {
"test": "mocha -r ts-node/register -p tsconfig.action.json spec/*.spec.ts spec/**/*.spec.ts",
"build:action": "rm -r dist || true && tsc -p tsconfig.action.json",
"build:validator": "rm -r dist || true && tsc -p tsconfig.validate.json",
"coverage": "nyc -r lcov -r text-summary npm run test",
"format:prettier": "prettier --write src/*.ts spec/*.ts",
"format:eslint": "eslint --fix --ext .js,.ts src/ spec/",
"format": "run-s format:*",
"lint:prettier": "prettier --check src/*.ts spec/*.ts",
"lint:eslint": "eslint --ext .js,.ts src/ spec/",
"lint": "run-s lint:*",
"prepare": "husky install",
"verify-message": "ts-node src/validate/validate.ts"
},
"devDependencies": {
"@onezerocompany/eslint-config": "^1.4.0",
"@onezerocompany/prettier-config": "^1.0.1",
"@onezerocompany/tsconfig-node": "^1.1.0",
"@types/chai": "^4.2.21",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/nock": "^11.1.0",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"chai": "^4.3.4",
"chai-nock": "^1.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"husky": "^7.0.2",
"mocha": "^9.1.1",
"nock": "^13.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.4.0",
"prettier-eslint": "^12.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"prettier": "@onezerocompany/prettier-config",
"eslintConfig": {
"root": true,
"extends": "@onezerocompany",
"parserOptions": {
"project": [
"./tsconfig.action.json",
"./tsconfig.validate.json",
"./tsconfig.dev.json"
]
},
"env": {
"node": true
}
},
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"yaml": "^1.10.2"
},
"nyc": {
"all": true,
"include": [
"src/**/*.ts"
],
"check-coverage": true
},
"compilerOptions": {
"sourceMap": false,
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"lib": [
"es6",
"node"
]
},
"files": [
"dist",
"categories.yml",
"LICENSE",
"README.md"
]
}