-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.06 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ava",
"version": "0.3.0",
"description": "Futuristic test runner 🚀",
"license": "MIT",
"repository": "sindresorhus/ava",
"homepage": "http://ava.li",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"maintainers": [
{
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
{
"name": "Kevin Mårtensson",
"email": "kevinmartensson@gmail.com",
"url": "github.com/kevva"
},
{
"name": "Vadim Demedes",
"email": "vdemedes@gmail.com",
"url": "github.com/vdemedes"
}
],
"bin": "cli.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && nyc tape test/*.js | tap-dot",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js",
"cli.js",
"lib"
],
"keywords": [
"cli-app",
"cli",
"ava",
"test",
"runner",
"concurrent",
"parallel",
"fast",
"tape",
"tap",
"mocha",
"qunit",
"jasmine",
"tdd",
"assert",
"assertion",
"futuristic"
],
"dependencies": {
"arr-flatten": "^1.0.1",
"ava-init": "^0.1.0",
"babel-core": "^5.8.23",
"babel-plugin-espower": "^1.0.0",
"babel-runtime": "^5.8.29",
"bluebird": "^3.0.0",
"chalk": "^1.0.0",
"co": "floatdrop/co#e6c2a50",
"core-assert": "^0.1.0",
"empower": "^1.0.2",
"figures": "^1.4.0",
"fn-name": "^2.0.0",
"globby": "^3.0.1",
"has-flag": "^1.0.0",
"is-generator": "^1.0.2",
"meow": "^3.3.0",
"plur": "^2.0.0",
"power-assert-formatter": "^1.1.0",
"power-assert-renderers": "^0.1.0",
"pretty-ms": "^2.0.0",
"require-from-string": "^1.0.0",
"resolve-from": "^1.0.0",
"serialize-error": "^1.0.0",
"set-immediate-shim": "^1.0.1",
"squeak": "^1.2.0",
"update-notifier": "^0.5.0"
},
"devDependencies": {
"coveralls": "^2.11.4",
"nyc": "^3.2.2",
"tap-dot": "^1.0.0",
"tape": "^4.0.0",
"xo": "*"
}
}