-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"name": "@ionaru/create-package",
"version": "6.0.0",
"description": "A system that templates a new NPM package.",
"bin": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"templates/**/*"
],
"scripts": {
"clean": "npx -q rimraf dist",
"build": "npm run clean && tsc --project tsconfig.json",
"lint": "eslint --ext ts --max-warnings 0 --ignore-pattern *.spec.ts src",
"pretest": "npm run lint",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "npm run build",
"preversion": "npm run test"
},
"keywords": [
"template",
"npm",
"package",
"typescript",
"eslint"
],
"author": "Jeroen Akkerman",
"repository": "github:Ionaru/create-package",
"license": "MIT",
"devDependencies": {
"@ionaru/eslint-config": "^6.3.0",
"@types/debug": "^4.1.5",
"@types/mustache": "^4.0.1",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"eslint": "^8.13.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"debug": "^4.2.0",
"mustache": "^4.0.1",
"simple-git": "^3.7.0",
"supports-color": "^9.2.2"
}
}