-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.48 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
{
"name": "ts-readme",
"version": "1.1.3",
"description": "Generate docs from typescript + jsdoc and put it in a README",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist",
"author": "Andrew Lisowski [email protected]",
"sideEffects": false,
"contributors": [
"Andrew Lisowski [email protected]"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"bin": "bin/ts-readme.js",
"scripts": {
"build": "ds build",
"start": "ds build --watch",
"test": "ds test",
"lint": "ds lint",
"docs": "./bin/ts-readme.js --header-depth 4 --matcher TS-README-GENERATED"
},
"files": [
"dist",
"bin",
"!*.test.*",
"!__snapshots__",
"!__tests__"
],
"dependencies": {
"command-line-application": "^0.9.6",
"fast-glob": "^3.1.1",
"prettier": "1.19.1"
},
"peerDependencies": {
"typescript": ">= 3.x"
},
"devDependencies": {
"@auto-it/all-contributors": "9.49.4",
"@auto-it/first-time-contributor": "9.49.4",
"@design-systems/cli": "1.1.0",
"@types/prettier": "^1.19.0",
"auto": "9.49.4",
"husky": "3.0.1",
"lint-staged": "9.2.1",
"typescript": "3.7.2"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx,jsx}": [
"prettier --write",
"git add"
]
},
"auto": {
"plugins": [
"npm",
"all-contributors",
"first-time-contributor"
]
}
}