forked from makeomatic/deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.08 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.08 KB
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
{
"name": "@makeomatic/deploy",
"version": "0.0.0-development",
"description": "Common build and deploy tasks wrapped in a cli",
"main": "./bin/index.js",
"repository": {
"type": "git",
"url": "https://github.com/makeomatic/deploy"
},
"author": "Vitaly Aminev <v@makeomatic.ca>",
"license": "MIT",
"scripts": {
"lint": "eslint ./bin",
"test": "yarn lint && ./bin/cli.js test run",
"postinstall": "node ./scripts/setup-semantic-release.js",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"engine": {
"node": ">= 12.15.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-strict-mode": "^7.10.1",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-makeomatic": "^5.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^20.1.0",
"jest": "^26.1.0",
"tempy": "^0.5.0"
},
"dependencies": {
"@commitlint/cli": "^9.0.1",
"bluebird": "^3.7.2",
"chrome-launcher": "^0.13.3",
"chrome-remote-interface": "^0.28.1",
"death": "^1.1.0",
"find-up": "^4.1.0",
"glob": "^7.1.6",
"husky": "^4.2.3",
"hyperid": "^2.0.3",
"is": "^3.2.1",
"js-yaml": "^3.14.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"ms-conf": "^7.0.0",
"npm-path": "^2.0.4",
"pino": "^6.3.2",
"read-pkg": "^5.2.0",
"rimraf": "^3.0.2",
"semantic-release": "17.1.0",
"shelljs": "^0.8.3",
"strip-final-newline": "^2.0.0",
"yargs": "^15.3.1"
},
"bin": {
"mdep": "./bin/cli.js"
},
"peerDependencies": {
"cross-env": ">= 6.0.0"
},
"files": [
"bin/",
"templates/",
"scripts/",
"git-hooks/",
".releaserc.json",
".commitlintrc.js"
],
"jest": {
"testURL": "http://tester.local"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}