-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 884 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
{
"author": "",
"bugs": {
"url": "https://github.com/Chocrates/actions-samples/issues"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"description": "",
"devDependencies": {
"jest": "^26.6.3"
},
"homepage": "https://github.com/Chocrates/actions-samples#readme",
"jest": {
"automock": false,
"setupFilesAfterEnv": [
"./setupJest.js"
],
"testEnvironment": "node"
},
"keywords": [],
"license": "ISC",
"main": "index.js",
"name": "actions-samples",
"repository": {
"type": "git",
"url": "git+https://github.com/Chocrates/actions-samples.git"
},
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"version": "1.0.0"
}