-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.03 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
{
"name": "devlog",
"version": "3.0.0",
"description": "A command line logging tool for recording thoughts/ideas/issues as a software developer (or anyone else who wants to write notes from the command line)",
"keywords": [
"developer",
"diary",
"journal",
"notes",
"notes"
],
"license": "MIT",
"author": "Brett Uglow <[email protected]> (http://uglow.github.io/)",
"type": "module",
"exports": "./bin/cli.js",
"bin": {
"devlog": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/uglow/devlog.git"
},
"files": [
"bin",
"src",
"*.md"
],
"scripts": {
"commit-msg": "cz-customizable-ghooks",
"test": "npm run test:unit -- --watch",
"test:unit": "node --experimental-vm-modules node_modules/.bin/jest",
"test:coverage": "npm run test:unit -- --coverage",
"lint": "eslint --fix bin/* src/*",
"verify": "eslint --max-warnings=0 bin/ src/",
"pre-push": "npm-run-all verify test:coverage --silent",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitMessageConfig.cjs"
}
},
"dependencies": {
"os-locale": "5.0.0",
"userhome": "1.0.0"
},
"devDependencies": {
"@jest/globals": "27.0.6",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"cz-customizable": "5.2.0",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-unicorn": "34.0.1",
"husky": "7.0.0",
"jest": "27.0.6",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"semantic-release": "17.4.4",
"test-console": "2.0.0"
},
"engines": {
"node": ">=14.x"
}
}