-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.25 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
{
"name": "@boehringer-ingelheim/create-config",
"version": "1.0.2",
"type": "module",
"license": "MIT",
"author": "Boehringer Ingelheim",
"description": "Add shared configs to your project.",
"keywords": [
"boehringer",
"boehringer-ingelheim",
"configuration",
"editorconfig",
"prettier",
"prettierrc",
"prettier-config",
"eslint",
"eslintrc",
"eslint-config"
],
"homepage": "https://github.com/boehringer-ingelheim/create-config.git",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"index.js",
"dist",
"files"
],
"bin": {
"create-config": "index.js"
},
"scripts": {
"dev": "node index.js",
"predev": "unbuild --stub",
"dev:watch": "chokidar 'src/**/*.ts' -c 'npm run dev --retries=0'",
"predev:watch": "unbuild --stub",
"build": "unbuild",
"prettier": "prettier --write --ignore-unknown .",
"lint": "DEBUG=eslint:cli-engine eslint --fix .",
"prerelease": "npm run build",
"release": "dotenv -- semantic-release --no-ci",
"prerelease:ci": "npm run build",
"release:ci": "semantic-release",
"prepare": "husky install"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@boehringer-ingelheim/eslint-config": "^1.1.4",
"@boehringer-ingelheim/prettier-config": "^1.0.0",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@commitlint/types": "^17.4.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/cross-spawn": "^6.0.4",
"@types/node": "^20.8.7",
"@types/prompts": "^2.4.7",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"semantic-release": "22.0.5",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
},
"dependencies": {
"prompts": "^2.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/boehringer-ingelheim/create-config.git"
},
"bugs": {
"url": "https://github.com/boehringer-ingelheim/create-config/issues"
}
}