This repository was archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.42 KB
/
Copy pathpackage.json
File metadata and controls
151 lines (151 loc) · 4.42 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "@namics/frontend-defaults-cli",
"description": "CLI tool which creates a default setup for your frontend project",
"version": "1.0.2",
"author": "Namics AG",
"bin": {
"frontend-defaults": "./bin/index.js"
},
"bugs": "https://github.com/namics/frontend-defaults-cli/issues/new",
"commitlint": {
"extends": [
"@namics/commitlint-conventional-changelog"
]
},
"config": {
"commitizen": {
"path": "@namics/cz-conventional-changelog"
}
},
"contributors": [
"Simon Mollweide <simon.mollweide@namics.com>"
],
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@dash4/plugin-actions": "0.8.0",
"@dash4/plugin-code-coverage": "0.8.0",
"@dash4/plugin-dependencies": "0.8.0",
"@dash4/plugin-npm-scripts": "0.8.0",
"@dash4/plugin-readme": "0.8.0",
"@dash4/plugin-terminal": "0.8.0",
"@dash4/server": "0.8.0",
"@namics/commitlint-conventional-changelog": "1.1.15",
"@namics/cz-conventional-changelog": "2.0.1",
"@namics/eslint-config": "8.0.7",
"@namics/prettier-config": "1.0.1",
"@namics/ts-config": "1.0.1",
"@types/diff": "4.0.2",
"@types/fs-extra": "8.1.0",
"@types/jest": "25.1.4",
"@types/json-stable-stringify": "1.0.32",
"@types/listr": "0.14.2",
"@types/node": "13.9.1",
"@types/react": "16.9.23",
"@types/rimraf": "2.0.3",
"@types/semver": "7.1.0",
"@types/username": "3.0.0",
"@types/zen-observable": "0.8.0",
"acorn": "7.1.1",
"chalk": "3.0.0",
"clean-webpack-plugin": "3.0.0",
"commander": "4.1.0",
"commitizen": "4.0.3",
"deepmerge": "4.2.2",
"diff": "4.0.2",
"enquirer": "2.3.4",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.1",
"execa": "4.0.0",
"fs-extra": "8.1.0",
"generate-webpack-config": "1.4.0",
"husky": "4.2.3",
"jest": "24.9.0",
"json-stable-stringify": "1.0.1",
"latest-version": "5.1.0",
"license-checker": "25.0.1",
"lint-staged": "10.0.8",
"listr": "0.14.3",
"make-dir": "3.0.2",
"npm-run-all": "4.1.5",
"ora": "4.0.3",
"prettier": "1.19.1",
"react": "16.13.0",
"react-test-renderer": "16.13.0",
"rimraf": "3.0.2",
"semver": "7.1.3",
"standard-version": "7.1.0",
"ts-config-webpack-plugin": "1.4.0",
"ts-jest": "24.3.0",
"typescript": "3.7.5",
"username": "5.1.0",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"zen-observable": "0.8.15"
},
"engines": {
"node": ">=10"
},
"files": [
"README.md",
"LICENSE",
"bin",
"build",
"dist",
"templates"
],
"homepage": "https://github.com/namics/frontend-defaults-cli#frontend-defaults-cli-",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"cli",
"configs",
"defaults",
"frontend-defaults",
"frontend-defaults-cli",
"namics"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --ext .jsx,.js,.ts,.tsx"
]
},
"main": "./dist/index.js",
"private": false,
"repository": "https://github.com/namics/frontend-defaults-cli",
"scripts": {
"build": "npm-run-all build:*",
"build:bundle": "webpack --mode=\"production\"",
"build:definitions": "tsc",
"clean": "npx npm-run-all clean:*",
"clean:build": "npx rimraf build coverage dist",
"clean:dirs": "npx rimraf npm-debug.log package-lock.json",
"clean:modules": "npx rimraf node_modules",
"cz": "git-cz",
"lint": "npm-run-all lint:*",
"lint:license": "license-checker --production --summary --exclude \"Apache-2.0, BSD, ISC, LGPL, MIT, MPL\" --failOn \"AGPL; EPL; GPL\"",
"lint:ts": "eslint . --ext .jsx,.js,.ts,.tsx",
"postbuild": "rimraf build/*.js build/*js.map",
"prebuild": "rimraf build dist",
"prepublishOnly": "npm-run-all lint test build",
"prerelease": "npm-run-all lint test build",
"prettier": "prettier --write \"**/*.*(js|jsx|ts|tsx|json|md)\"",
"release": "standard-version",
"sort-package": "npx fixpack",
"start": "dash4",
"test": "jest --coverage",
"update": "node scripts/update",
"watch": "run-p watch:*",
"watch-test": "jest --watchAll --coverage --notify --notifyMode=failure-change",
"watch:bundle": "webpack --watch --mode=\"development\"",
"watch:definitions": "tsc -w"
},
"typings": "./build/index.d.ts"
}