-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.26 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
92
93
94
95
96
{
"name": "izm",
"version": "0.3.1",
"description": "Generates a new NodeJS project.",
"main": "./src/index.js",
"scripts": {
"lint": "eslint .",
"format": "prettier --write \"src/**/*.js\" \"__tests__/**/*.js\"",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha --exit --reporter spec ./__tests__/**/*.test.js",
"prepublishOnly": "npm test",
"preversion": "npm run lint",
"release:major": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "husky install"
},
"repository": {
"url": "https://github.com/midrissi/izm.git",
"type": "git"
},
"keywords": [
"generator",
"nodejs",
"node"
],
"contributors": [
{
"name": "Samia MASAD",
"email": "[email protected]"
},
{
"name": "Taha EL BOUFFI",
"email": "[email protected]"
},
{
"name": "Najib AIT RAHOU",
"email": "[email protected]"
},
{
"name": "Ahlam BENHACHEM",
"email": "[email protected]"
},
{
"name": "Basma El Yaagoubi",
"email": "[email protected]"
}
],
"author": {
"name": "Mohamed IDRISSI",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^8.1.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"release-it": "^14.11.3"
},
"engines": {
"node": ">= 8.0.0"
},
"files": [
"src/**/*.js",
"src/**/*.json",
"assets"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"preferGlobal": true,
"bin": {
"izm": "./src/index.js"
}
}