-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.95 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
{
"name": "github-actions",
"version": "1.5.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix ./",
"pretest": "npm run lint",
"test:only": "NODE_ENV=test mocha --exit -r spec/helpers --timeout 50000 -R spec --exclude './node_modules/**' './**/*.spec.js'",
"test:watch": "nodemon --exec \"NODE_ENV=test mocha -r spec/helpers --timeout 50000 -R spec --exclude './node_modules/**' './**/*.spec.js' || true\" -e js,json,sql",
"test": "npm run cover",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:ci": "nyc -r text-summary -r html -- npm run test:ci",
"cover:show": "open \"file://$PWD/coverage/index.html\"",
"build": "for i in extractCardId blockCard moveCard createCard addComment validateCustomFields assignUsers initiateBoardEvent initiateCardEvent; do ncc build ./${i%%} -m -o ./${i%%}/dist; done",
"preact": "npm run build",
"act": "act repository_dispatch -e test_payload.json",
"act:watch": "act repository_dispatch -e test_payload.json -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leankit/github-actions.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Leankit/github-actions/issues"
},
"homepage": "https://github.com/Leankit/github-actions#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"got": "^11.5.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^8.27.0",
"eslint-config-leankit": "^6.0.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.19",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.1",
"sinon-chai": "^3.4.0"
},
"nyc": {
"exclude": [
"coverage",
"spec",
"**/dist/index.js",
".eslintrc.js"
],
"sourceMap": false,
"instrument": true,
"all": true
}
}