forked from oat-sa/tao-extension-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "@oat-sa/tao-extension-release",
"version": "2.3.1",
"description": "Helps you to release TAO extensions",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test:dev": "nodemon -e js --watch tests --watch src --delay 1 --exec npm run test",
"test:cov": "npm run test:unit -- --coverage",
"test:cov:html": "open-cli coverage/lcov-report/index.html",
"test:integ": "jest tests/integration --config=./jest.config.js --runInBand",
"test:unit": "jest tests/unit --config=./jest.config.js",
"test": "npm run test:integ && npm run test:unit",
"lint": "eslint index.js \"src/**/*.js\" \"tests/**/*.spec.js\"",
"lint:report": "npm run lint -- --output-file eslint_report.json --format json"
},
"type": "module",
"exports": "./index.js",
"bin": {
"taoRelease": "./index.js"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oat-sa/tao-extension-release.git"
},
"author": {
"name": "Bertrand Chevrier",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oat-sa/tao-extension-release/issues"
},
"homepage": "https://github.com/oat-sa/tao-extension-release#readme",
"dependencies": {
"@oat-sa/conventional-changelog-tao": "^0.2.1",
"chalk": "^2.1.0",
"commander": "^3.0.1",
"conventional-changelog-core": "^4.2.2",
"conventional-recommended-bump": "^6.1.0",
"cross-spawn": "^6.0.3",
"fs-extra": "^5.0.0",
"git-url-parse": "^13.0.0",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"inquirer": "^7.3.0",
"minimist": "^1.2.0",
"octonode": "^0.10.0",
"open": "^7.4.0",
"read-pkg": "^5.2.0",
"semver": "^7.3.4",
"simple-git": "^3.17.0",
"update-notifier": "^6.0.2",
"write-pkg": "^4.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@testing-library/jest-dom": "^5.16.5",
"babel-jest": "^29.5.0",
"eslint": "^8.38.0",
"eslint-plugin-es": "^4.1.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.7",
"open-cli": "^7.2.0",
"replace-in-file": "^4.1.3"
}
}