-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.1 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.1 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
69
70
71
72
73
74
75
76
{
"name": "@ngx-devs/cli",
"license": "MIT",
"version": "1.13.0",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": "git@github.com:ngx-devs/ngx-devs-cli",
"description": "NGX Devs CLI",
"author": "Gleison de Almeida",
"types": "build/types/types.d.ts",
"bin": {
"ngxd": "bin/ngx-devs-cli"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "copyfiles --up 1 ./src/templates/** ./build",
"build": "npm run clean-build && npm run compile && npm run copy-templates",
"prepublishOnly": "npm run build",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"test": "jest --verbose",
"test-watch": "jest --watchAll",
"tw": "npm run test-watch",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"commit": "git-cz",
"release": "semantic-release",
"changelog": "gitmoji-changelog",
"prepare": "husky install"
},
"files": [
"build",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"dependencies": {
"gluegun": "latest"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@ngx-devs/commitlint-plugin-imperative": "^1.1.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^26.0.20",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"git-cz": "^4.8.0",
"gitmoji-changelog": "^2.3.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^19.0.2",
"semantic-release-gitmoji": "^1.4.4",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}