-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
{
"name": "docbits",
"version": "0.4.1",
"description": "A single source of truth for documentation, keeping things DRY and maintainable.",
"main": "dist/index.js",
"files": [
"bin",
"dist"
],
"bin": "./bin/docbits",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"watch": "jest --watchAll",
"cover": "jest --coverage",
"prepare": "npm run build",
"workflows": "ts-node src/runCLI.ts -r workflows -o .github/workflows"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanallen/docbits.git"
},
"author": "Ryan Allen (https://github.com/ryanallen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanallen/docbits/issues"
},
"homepage": "https://github.com/ryanallen/docbits#readme",
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"preset": "ts-jest",
"testEnvironment": "node",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.19",
"@types/yargs": "^15.0.12",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"chalk": "^4.1.0",
"globby": "^11.0.1",
"mkdirp": "^1.0.4"
}
}