-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "@projectlint/cli",
"version": "0.0.0",
"description": "CLI for `projectlint`, a style checker and lint tool for (Node.js) projects",
"main": "lib",
"bin": {
"projectlint": "server.js"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --coverage --notify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projectlint/cli.git"
},
"keywords": [
"rules",
"projectlint"
],
"author": "Jesús Leganés-Combarro 'piranna' <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/projectlint/cli/issues"
},
"homepage": "https://github.com/projectlint/cli#readme",
"dependencies": {
"@projectlint/projectlint": "github:projectlint/projectlint",
"argparse": "^1.0.10",
"json2md": "^1.7.0",
"tasktree-cli": "projectlint/tasktree"
},
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"jest-cli": "^25.5.4",
"prettier": "^2.0.5"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
]
}
}