-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
35 lines (35 loc) · 956 Bytes
/
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
{
"name": "@keep-network/ci",
"version": "0.0.1",
"description": "",
"main": "lib/index.js",
"type": "module",
"files": [
"lib",
"config"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha --exit --recursive"
},
"repository": "git+https://github.com/keep-network/ci.git",
"author": "Jakub Nowakowski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/keep-network/ci/issues"
},
"homepage": "https://github.com/keep-network/ci#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@octokit/core": "^3.3.1",
"jsonschema": "^1.4.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.8.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep",
"mocha": "^8.3.2",
"prettier": "^2.5.1"
}
}