-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "wiby",
"version": "0.0.0-development",
"description": "Will I Break You?",
"bin": {
"wiby": "bin/wiby"
},
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"action-wiby-test": "npm install --production && ./bin/wiby test",
"action-wiby-result": "npm install --production && ./bin/wiby result",
"lint": "standard",
"pretest": "[ \"$NODE_LTS_LATEST\" != \"\" ] && [ \"$MATRIX_NODE_VERSION\" != \"$NODE_LTS_LATEST\" ] && echo 'Skipping linting' || npm run lint",
"test": "npm run tests-only",
"tests-only": "tap",
"generate-docs": "./bin/generate-usage.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pkgjs/wiby.git"
},
"author": "@pkgjs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pkgjs/wiby/issues"
},
"homepage": "https://github.com/pkgjs/wiby#readme",
"dependencies": {
"@octokit/graphql": "^4.5.0",
"@octokit/rest": "^18.0.0",
"colors": "1.4.0",
"debug": "^4.3.1",
"dotenv": "^16.0.0",
"git-url-parse": "^11.1.2",
"joi": "^17.2.1",
"simple-git": "^3.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"nock": "^13.0.3",
"standard": "^16.0.0",
"tap": "^15.0.0",
"tmp": "^0.2.1"
},
"standard": {
"ignore": [
"test/fixtures/config"
]
},
"support": true,
"engines": {
"node": "^16 || ^14 || ^12"
}
}