-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "@option26/scaffold",
"version": "1.1.0",
"description": "A command line utility that scaffolds projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "github:option26/scaffold",
"homepage": "https://github.com/option26/scaffold",
"dependencies": {
"inquirer": "^8.2.0",
"istextorbinary": "^6.0.0",
"micromatch": "^4.0.4",
"nunjucks": "^3.2.3",
"simple-git": "^2.47.0",
"uuid": "^8.3.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/inquirer": "^8.1.3",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.11.4",
"@types/nunjucks": "^3.2.0",
"@types/uuid": "^8.3.1",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"bin": {
"scaffold": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint ",
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Option 26 e.V.",
"license": "AGPL-3.0"
}