-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.08 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@slimio/psp",
"version": "0.12.3",
"description": "Analyze compliance with the structural policy of a SlimIO project",
"main": "./index.js",
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "nyc --reporter=lcov ava --verbose",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "codecov",
"report": "nyc report --reporter=html"
},
"keywords": [
"psp",
"tool",
"slimio",
"project-struct-policy",
"policy",
"code",
"quality"
],
"author": "SlimIO",
"license": "MIT",
"files": [
"index.d.ts",
"index.js",
"src",
"template",
"bin/index.js"
],
"dependencies": {
"@slimio/is": "^1.5.1",
"@slimio/manifest": "^0.9.1",
"boxen": "^4.2.0",
"estree-walker": "^2.0.1",
"file-ignore-parser": "^2.0.0",
"file-normalize": "^1.1.2",
"globby": "^11.0.1",
"js-yaml": "^3.14.0",
"kleur": "^4.1.3",
"make-promises-safe": "^5.1.0",
"marked": "^1.2.2",
"meriyah": "^3.0.3",
"sade": "^1.7.4",
"semver": "^7.3.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^4.1.0",
"@types/node": "^14.14.2",
"ava": "^3.13.0",
"codecov": "^3.8.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.12.0",
"husky": "^4.3.0",
"jsdoc": "^3.6.6",
"nyc": "^15.1.0",
"pkg-ok": "^2.3.1"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"pre-push": "cross-env eslint src/*.js bin/index.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 90
},
"bin": {
"psp": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/psp.git"
},
"bugs": {
"url": "https://github.com/SlimIO/psp/issues"
},
"homepage": "https://github.com/SlimIO/psp#readme"
}