-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "topdoc-monorepo",
"description": "The Monorepo for Topdoc and sub projects",
"scripts": {
"test": "lerna run test",
"coverage": "nyc lerna run test",
"prepare": "lerna run prepare",
"prettier": "prettier \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)\"",
"format": "npm run prettier -- --write"
},
"repository": {
"type": "git",
"url": "https://github.com/topdoc/topdoc.git"
},
"keywords": [
"css",
"style",
"documentation",
"usage"
],
"author": "Garth Braithwaite <[email protected]> (http://garthdb.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/topdoc/topdoc/issues"
},
"ava": {
"babel": false,
"files": [
"**/test/**/*",
"!**/test/expected/**",
"!**/test/fixtures/**"
]
},
"nyc": {
"include": [
"**/src/**/*.js",
"**/cli/**/*.js"
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"atomdoc-cli": "^1.1.1",
"ava": "^3.12.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"postcss": "^8.0.9"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}