-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.48 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "semantic-release-heroku",
"version": "1.3.5",
"description": "plugin to publish a Heroku App using semantic-releases",
"main": "./lib",
"keywords": [
"semantic",
"release",
"heroku",
"deploy",
"ci",
"push",
"version"
],
"scripts": {
"prepare": "npm run build:src && husky install",
"build:src": "babel src --out-dir ./lib --copy-files",
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
"test:security": "npm audit --production && npm run test:lock",
"test:lint": "eslint src bin tests --no-error-on-unmatched-pattern",
"test:mocha": "mocha --config .mocharc.json 'tests/**/*test.js'",
"test:package": "npt test -c .package-tester.json",
"test:coverage": "BUILD=0 MODE=test nyc mocha --config .mocharc.json 'tests/**/*test.js'",
"test:debt": "jscpd src --config .jscpd.json",
"test:lock": "lockfile-lint --path package-lock.json --validate-https --allowed-hosts npm",
"coverage-check": "MODE=test nyc check-coverage",
"test": "npm run test:lint && npm run test:security && BUILD=1 npm run test:mocha",
"sort-deps": "npm remove --save example; npm remove --save-dev example",
"semantic-release": "npx semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/pustovitDmytro/semantic-release-heroku.git"
},
"author": "Dmytro Pustovit",
"license": "MIT",
"bugs": {
"url": "https://github.com/pustovitDmytro/semantic-release-heroku/issues"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/pustovitDmytro/semantic-release-heroku#readme",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/lint": "^13.2.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4.3.6",
"chance": "^1.1.8",
"cls-hooked": "^4.2.2",
"conventional-changelog-eslint": "^3.0.9",
"coveralls": "^3.1.1",
"danger": "^10.9.0",
"docopt": "^0.6.2",
"eslint": "^7.32.0",
"eslint-config-incredible": "^2.4.1",
"eslint-plugin-censor": "^1.5.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-regexp": "^1.5.1",
"eslint-plugin-scanjs-rules": "^0.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-unicorn": "^36.0.0",
"husky": "^7.0.4",
"jscpd": "^3.4.5",
"lockfile-lint": "^4.6.2",
"md5": "^2.3.0",
"mocha": "^9.2.0",
"mocha-junit-reporter": "^2.0.2",
"node-package-tester": "^1.3.3",
"nyc": "^15.1.0",
"semantic-release": "^19.0.2",
"semantic-release-telegram": "^1.5.1",
"sinon": "^11.1.2",
"uuid": "^8.3.2"
},
"dependencies": {
"base-api-client": "1.5.8",
"cottus": "1.10.6",
"fs-extra": "10.1.0",
"globby": "11.1.0",
"libnpmversion": "2.0.2",
"myrmidon": "1.7.2",
"tar-fs": "2.1.1"
}
}