-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "jest-enzyme-selector-exists",
"version": "1.1.0",
"description": "A custom matcher to be extended by Jest, to allow you to check existence of enzyme selectors",
"main": "build.js",
"scripts": {
"test": "jest",
"build": "rollup index.js --format cjs --output build.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cgood92/jest-enzyme-selector-exists.git"
},
"keywords": [
"jest",
"matcher",
"enzyme",
"exists",
"toExist"
],
"files": [
"build.js"
],
"author": "Clint Goodman",
"license": "ISC",
"bugs": {
"url": "https://github.com/cgood92/jest-enzyme-selector-exists/issues"
},
"homepage": "https://github.com/cgood92/jest-enzyme-selector-exists#readme",
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"jest": "^20.0.4",
"rollup": "^0.45.2"
}
}