-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.39 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
{
"private": true,
"license": "MIT",
"sideEffects": false,
"scripts": {
"format": "prettier --write .",
"docs": "rm -r docs; typedoc --options configs/typedoc.json && touch docs/.nojekyll",
"prepare": "husky install"
},
"lint-staged": {
"*.(js|ts|json|yaml)": "prettier --write"
},
"commithelper": {
"scopes": [
"browser",
"node",
"common"
],
"scopeOverrides": {
"chore": [
"tools",
"refactor",
"release",
"test",
"deps",
"docs"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jvanbruegge/minireq.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/jvanbruegge/minireq/issues"
},
"homepage": "https://github.com/jvanbruegge/minireq#readme",
"devDependencies": {
"@minireq/common": "workspace:^2.0.0",
"@release-it/conventional-changelog": "^2.0.1",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"commithelper": "^1.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.1.2",
"release-it": "^14.5.0",
"rollup": "^2.28.2",
"typedoc": "^0.20.34",
"typescript": "^4.0.3"
},
"prettier": "./configs/.prettierrc.json"
}