-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.2 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
{
"name": "mono-test-utils",
"version": "1.2.4",
"description": "Mono Test Utils",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint lib/ test/",
"test": "npm run lint && nyc ava --fail-fast --serial --verbose test/ && nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"preversion": "npm test"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrajs/mono-test-utils.git"
},
"nyc": {
"include": [
"lib/"
]
},
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Benjamin Canac (@benjamincanac)"
}
],
"license": "MIT",
"dependencies": {
"is-absolute-url": "^2.1.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"server-destroy": "^1.0.1",
"std-mocks": "^1.0.1"
},
"peerDependencies": {
"mono-core": "latest"
},
"devDependencies": {
"mono-core": "latest",
"ava": "0.25.0",
"codecov": "3.0.4",
"eslint": "5.4.0",
"nyc": "12.0.2"
},
"keywords": [
"mono",
"mono-utils",
"mono-test-utils"
]
}