-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
{
"name": "templateman",
"version": "0.1.0",
"description": "Simple and flexible code generating CLI tool for frequently used components.",
"bin": {
"tm": "./lib/index.js"
},
"keywords": [
"cli",
"terminal",
"devtool",
"template",
"generate",
"components",
"automation"
],
"files": [
"lib"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "npm run clean && babel src --out-dir lib",
"watch": "babel --watch src --out-dir lib",
"prepublishOnly": "npm run test && npm run build",
"prettier": "prettier --config .prettierrc.json --write \"./**/*.{js,json}\" --ignore-path .gitignore",
"clean": "rimraf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adlite/templateman.git"
},
"author": "Adlite <adlite@yandex.ru>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adlite/templateman/issues"
},
"homepage": "https://github.com/adlite/templateman#readme",
"dependencies": {
"caesar-caser": "^1.0.0-rc.2",
"chalk": "^2.3.2",
"clear": "^0.1.0",
"cosmiconfig": "^4.0.0",
"inquirer": "^5.1.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"rimraf": "^2.6.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
}
}