-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
104 lines (104 loc) · 2.46 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
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
98
99
100
101
102
103
104
{
"name": "jest-wrap",
"version": "1.7.0",
"description": "Fluent pluggable interface for easily wrapping `describe` and `it` blocks in Jest tests.",
"author": "Jordan Harband <ljharb@gmail.com>",
"contributors": [
{
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
},
{
"name": "Joe Lencioni",
"email": "joe.lencioni@gmail.com",
"url": "https://twitter.com/lencioni"
},
{
"name": "Gary Borton",
"email": "gdborton@gmail.com",
"url": "https://twitter.com/garyborton"
}
],
"main": "index.js",
"jest": {
"collectCoverage": false,
"roots": [
"<rootDir>/test"
],
"testRegex": "test/.*\\.js$",
"testURL": "http://localhost/"
},
"scripts": {
"prepublish": "safe-publish-latest",
"pretest": "npm run lint",
"test": "npm run tests-only",
"posttest": "aud --production",
"tests-only": "nyc npm run tests-all",
"tests-all": "npm run tape && npm run jest:standard && npm run jest:only",
"lint": "eslint --ext=.js,.mjs .",
"tape": "tape test/tape",
"jest:standard": "jest test/jest/*",
"jest:only": "jest test/jest-only/*",
"install:jest": "npm install --no-save jest@\"${JEST}\" && jest --version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airbnb/jest-wrap.git"
},
"keywords": [
"jest",
"test",
"javascript",
"js",
"chai",
"before",
"after",
"beforeEach",
"afterEach",
"describe",
"it",
"wrap",
"around",
"around_filter",
"mock",
"stub"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/jest-wrap/issues"
},
"homepage": "https://github.com/airbnb/jest-wrap#readme",
"dependencies": {
"define-properties": "^1.1.2",
"for-each": "^0.3.3",
"function-bind": "^1.1.1",
"function.prototype.name": "^1.1.0",
"has": "^1.0.3",
"is-callable": "^1.1.3",
"is-primitive": "^3.0.0",
"is-string": "^1.0.4",
"is-symbol": "^1.0.1",
"isarray": "^1.0.0 || ^2.0.0",
"object-inspect": "^1.6.0",
"object.entries": "^1.0.4"
},
"peerDependencies": {
"jest": "^18 || ^19 || ^20.0.1 || ^21 || ^22 || ^23 || ^24 || ^25 || ^26 || ^27.2"
},
"devDependencies": {
"aud": "^1.1.5",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"jest": "^18 || ^19 || ^20.0.1 || ^21 || ^22 || ^23 || ^24 || ^25 || ^26 || ^27.2",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"safe-publish-latest": "^1.1.1",
"semver": "^6.3.0",
"tape": "^4.9.0"
},
"engines": {
"node": ">= 0.4"
}
}