-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.04 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
{
"name": "@slimio/generator",
"version": "0.11.0",
"description": "SlimIO Project Generator",
"main": "./bin/index.js",
"bin": {
"generator": "./bin/index.js"
},
"scripts": {
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"test": "cross-env psp && nyc --reporter=lcov node test/test",
"prepublishOnly": "pkg-ok",
"coverage": "codecov"
},
"engines": {
"node": ">=12"
},
"files": [
"bin",
"src",
"template"
],
"dependencies": {
"@slimio/async-cli-spinner": "^0.5.2",
"@slimio/manifest": "^0.9.1",
"@slimio/nodejs-downloader": "^0.4.0",
"@slimio/npm-registry": "^0.5.0",
"@slimio/utils": "^0.9.0",
"@slimio/validate-addon-name": "^1.2.0",
"cross-spawn": "^7.0.2",
"kleur": "^3.0.3",
"ms": "^2.1.2",
"qoa": "^0.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^4.1.0",
"@slimio/psp": "^0.11.1",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"japa": "^3.0.1",
"jsdoc": "^3.6.4",
"nyc": "^15.0.1",
"pkg-ok": "^2.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/Generator.git"
},
"husky": {
"hooks": {
"pre-push": "cross-env eslint bin/index.js src/utils.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"Boilerplate",
"SlimIO",
"Kick",
"Starter",
"Generator"
],
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/Generator/issues"
},
"homepage": "https://github.com/SlimIO/Generator#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"per-file": false,
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 50
}
}