-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 KB
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
{
"name": "@thebinaryfelix/create-iron-api",
"version": "1.0.2",
"description": "A CLI to generate a base structure for a REST API project.",
"main": "src/index.js",
"bin": {
"@thebinaryfelix/create-iron-api": "bin/create-iron-api",
"create-iron-api": "bin/create-iron-api"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"release": "standard-version",
"push": "git push --follow-tags origin master",
"publish": "git push --follow-tags origin master && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"create-iron-api",
"generator",
"api",
"rest",
"educational"
],
"files": [
"bin/",
"src/",
"template/"
],
"repository": "github:thebinaryfelix/create-iron-api",
"author": "Mateus Felix",
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"arg": "^4.1.1",
"chalk": "^2.4.2",
"esm": "^3.2.25",
"execa": "^2.0.4",
"inquirer": "^6.5.1",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.4",
"prettier": "^1.18.2",
"standard-version": "^7.0.0"
}
}