-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.18 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": "touch-alt",
"version": "0.5.1",
"description": "Create from a template instead of a new file",
"license": "MIT",
"repository": "akameco/touch-alt",
"author": {
"name": "akameco",
"email": "akameco.t@gmail.com",
"url": "akameco.github.io"
},
"bin": "cli.js",
"engines": {
"node": ">=6"
},
"scripts": {
"add-contributors": "all-contributors add",
"precommit": "lint-staged",
"fmt": "prettier --write '*.{js,md}'",
"test": "flow && xo && ava"
},
"files": [
"cli.js",
"index.js"
],
"keywords": [
"cli"
],
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"cp-file": "^5.0.0",
"make-dir": "^1.3.0",
"meow": "^4.0.0",
"path-exists": "^3.0.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"ava": "^0.25.0",
"del": "^3.0.0",
"flow-bin": "^0.82.0",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"uuid": "^3.3.2",
"xo": "^0.23.0"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"object-curly-spacing": 0
}
}
}