-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 850 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 850 Bytes
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
{
"name": "create-ava",
"version": "2.0.1",
"description": "Add AVA to your project",
"license": "MIT",
"repository": "avajs/create-ava",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0"
},
"scripts": {
"test": "xo && ava"
},
"bin": "cli.js",
"files": [
"index.js",
"cli.js"
],
"keywords": [
"init",
"initialize",
"add",
"create",
"setup",
"generate",
"generator",
"scaffold",
"ava",
"test",
"runner"
],
"dependencies": {
"arr-exclude": "^1.0.0",
"execa": "^0.7.0",
"has-yarn": "^2.1.0",
"read-pkg-up": "^6.0.0",
"write-pkg": "^4.0.0"
},
"devDependencies": {
"ava": "^2.4.0",
"dot-prop": "^5.1.0",
"temp-write": "^4.0.0",
"xo": "^0.25.3",
"yarn": "^1.5.1"
}
}