-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "changelogged",
"version": "0.2.0",
"description": "Generate a release changelog",
"main": "index.js",
"bin": {
"changelogged": "dist/index.js"
},
"scripts": {
"test": "mocha -r ts-node/register --extension ts,tsx src/**.test.ts",
"build": "rm -rf dist/ && tsc && chmod a+x dist/index.js",
"prepublishOnly": "npm test && npm run build"
},
"files": [
"dist/"
],
"author": "Marvin Hagemeister <hello@marvinh.dev>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/mri": "^1.1.0",
"@types/node": "^14.14.32",
"@types/readline-sync": "^1.4.3",
"lint-staged": "^10.5.4",
"mocha": "^8.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"httpie": "^1.1.2",
"kleur": "^4.1.4",
"mri": "^1.1.6",
"readline-sync": "^1.4.10"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"useTabs": false,
"arrowParens": "avoid",
"trailingComma": "none"
}
}