-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.99 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
{
"name": "geoman",
"version": "0.1.0-alpha.2",
"description": "a scaffolding tool by nodejs, alternative to yeoman",
"main": "./dist/index.js",
"bin": {
"geoman": "./dist/bin.js"
},
"scripts": {
"test": "jest",
"start": "tsc -w -p tsconfig.json",
"build": "tsc -p tsconfig.json",
"dist": "npm publish --registry=https://registry.npmjs.org/",
"prepublish": "npm run build"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier-eslint --single-quote --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/HexMox/geoman.git"
},
"keywords": [
"scaffolding"
],
"author": "moxhe",
"license": "MIT",
"bugs": {
"url": "https://github.com/HexMox/geoman/issues"
},
"homepage": "https://github.com/HexMox/geoman",
"dependencies": {
"commander": "^6.1.0",
"debug": "^4.1.1",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-template": "^5.0.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@types/debug": "^4.1.5",
"@types/gulp": "^4.0.6",
"@types/gulp-rename": "0.0.33",
"@types/gulp-template": "^5.0.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.2",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"commitlint": "^9.1.2",
"eslint": "^7.8.0",
"eslint-config-imweb": "^0.2.19",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}