forked from shell2/learning-lab-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.79 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
{
"name": "@github/learning-lab-components",
"version": "1.0.6",
"description": "Open sourced components from GitHub Learning Lab",
"author": "GitHub, Inc. <[email protected]>",
"license": "MIT",
"keywords": [
"github-learning-lab",
"learning-lab",
"github",
"bot-actions",
"schema"
],
"homepage": "https://github.com/github/learning-lab-components#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/github/learning-lab-components.git"
},
"bugs": {
"url": "https://github.com/github/learning-lab-components/issues"
},
"main": "index.js",
"files": [
"**/*",
"!/.git/",
"!/.github/",
"!*.test.js",
"!*.snap",
"!/tests/",
"!/coverage/",
"!/docs/",
"!/script/"
],
"publishConfig": {
"access": "restricted",
"@github:registry": "https://npm.pkg.github.com/",
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": "10.x.x",
"npm": "6.x.x"
},
"scripts": {
"action:init": "node script/create-new-action.js",
"doc": "node script/generate-action-docs.js",
"test": "standard && jest --coverage"
},
"dependencies": {
"@octokit/rest": "^15.18.3",
"get-value": "^3.0.1",
"has": "^1.0.3",
"htmlparser2": "^4.1.0"
},
"peerDependencies": {
"@hapi/joi": "^16.1.8"
},
"devDependencies": {
"@hapi/joi": "^16.1.8",
"enquirer": "^2.3.4",
"jest": "^25.1.0",
"js-yaml": "^3.13.1",
"lodash.isplainobject": "^4.0.6",
"nock": "^12.0.3",
"probot": "^7.5.3",
"standard": "^14.3.3"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/tests/mockContext.js"
]
}
}