-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.57 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
{
"name": "harhar",
"version": "1.0.0",
"description": "",
"main": "src/cli.js",
"type": "commonjs",
"bin": {
"harhar": "src/main.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:updateSnapshot": "jest --updateSnapshot",
"format": "eslint --fix '**/*.js' && prettier --write '**/*.js'",
"lint": "eslint ."
},
"engines": {
"node": ">=12.3.0"
},
"author": "Bob van der Linden <bobvanderlinden@gmail.com>",
"license": "ISC",
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"abort-controller": "^3.0.0",
"commander": "^5.1.0",
"content-type": "^1.0.4",
"har-validator": "^5.1.5",
"jest-diff": "^25.5.0",
"node-fetch": "^2.6.0",
"object-hash": "^2.0.3",
"uuid": "^8.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.5.4",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1"
},
"jest": {
"setupFiles": [
"./test/setup.js"
]
}
}