-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 922 Bytes
/
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
{
"name": "create-xo",
"version": "2.0.0",
"description": "Add XO to your project",
"license": "MIT",
"repository": "xojs/create-xo",
"funding": "https://github.com/xojs/create-xo?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": "./cli.js",
"exports": "./index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"init",
"initialize",
"add",
"create",
"setup",
"generate",
"generator",
"scaffold",
"xo"
],
"dependencies": {
"execa": "^8.0.1",
"has-yarn": "^3.0.0",
"minimist": "^1.2.8",
"read-package-up": "^11.0.0",
"write-package": "^7.0.0"
},
"devDependencies": {
"ava": "^5.3.1",
"dot-prop": "^8.0.2",
"temp-write": "^5.0.0",
"xo": "^0.56.0"
},
"ava": {
"timeout": "10m"
}
}