-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 815 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 815 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
{
"name": "fly-ava",
"version": "1.2.0",
"description": "A plugin for Fly that run ava tests",
"keywords": [
"fly",
"fly-plugin"
],
"main": "index.js",
"files": [
"index.js",
"*.md",
"LICENSE"
],
"scripts": {
"test": "eslint *.js test/*.js && ava -v test/*.js"
},
"dependencies": {
"ava": ">=0.20.0 <0.21.0",
"pkg-conf": "^2.0.0"
},
"devDependencies": {
"eslint": "^3.14.1",
"fly": ">=2.0.2 <3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/flyjs/fly-ava"
},
"bugs": {
"url": "https://github.com/flyjs/fly-ava/issues"
},
"homepage": "https://github.com/flyjs/fly-ava",
"author": {
"name": "Pine Mizune",
"email": "pinemz@gmail.com",
"url": "https://github.com/pine"
},
"license": "MIT"
}