-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "webtem",
"version": "0.0.4",
"description": "",
"main": "dist/index.js",
"bin": {
"webtem": "./dist/src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*'",
"prettier": "prettier --write --config .prettierrc.js \"{bin,src,test,cypress,build}/**/*.{js,ts}\"",
"build": "yarn lint && tsc && yarn copy-template",
"copy-template": "ts-node copyTemplate.ts",
"dev": "node ./dist/src/index.js"
},
"author": "hahaaha",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/metalsmith": "^2.3.0",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"commander": "^6.2.0",
"download-git-repo": "^3.0.2",
"handlebars": "^4.7.6",
"inquirer": "^7.3.3",
"metalsmith": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"git add ."
]
}
}