-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 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
{
"name": "@oat-sa/tao-release-notes",
"version": "1.1.1",
"description": "Extract release notes from a TAO extension",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"lint": "eslint index.js src/*.js",
"test": "tape \"tests/unit/**/test.js\" | tap-diff || true",
"test:unit": "tape \"tests/unit/**/test.js\" | tap-diff || true",
"test:integ": "tape \"tests/integration/**/test.js\" | tap-diff || true",
"test:cov": "nyc --reporter=lcov --reporter=text tape \"tests/**/test.js\" | tap-nyc"
},
"bin": {
"taoReleaseNotes": "./index.js"
},
"files": [
"src"
],
"nyc": {
"exclude": [
"tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/oat-sa/tao-release-notes.git"
},
"keywords": [
"release",
"notes"
],
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/oat-sa/tao-release-notes/issues"
},
"homepage": "https://github.com/oat-sa/tao-release-notes#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^10.0.1",
"concat": "^1.0.3",
"cross-fetch": "^3.1.5",
"cross-spawn": "^7.0.3",
"csv-write-stream": "^2.0.0",
"fs-extra": "^11.1.1",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"inquirer": "^3.3.0",
"minimist": "^1.2.8",
"node-fetch": "^2.6.9",
"octonode": "^0.10.2",
"opn": "^5.5.0",
"semver": "^7.5.0",
"simple-git": "^3.18.0",
"update-notifier": "^5.1.0"
},
"engines": {
"node": ">=10.19.0"
},
"devDependencies": {
"@oat-sa/eslint-config-tao": "^2.0.0",
"eslint": "^8.39.0",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"rewire": "^6.0.0",
"sinon": "^4.4.5",
"tap-diff": "^0.1.1",
"tap-nyc": "^1.0.3",
"tape": "^5.6.3"
}
}