forked from testing-library/user-event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "@testing-library/user-event",
"version": "0.0.0-development",
"description": "Simulate user events for react-testing-library",
"keywords": [
"react-testing-library",
"dom-testing-library",
"react",
"testing"
],
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "npm t -- --coverage",
"codecov": "codecov",
"build": "babel src -d dist",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"cm": "npx git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.com/testing-library/user-event.git"
},
"author": "Giorgio Polvara <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/testing-library/user-event/issues"
},
"homepage": "https://github.com/testing-library/user-event#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@testing-library/dom": "^7.2.1",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^9.4.0",
"@testing-library/vue": "^4.1.0",
"all-contributors-cli": "^6.14.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^25.3.0",
"codecov": "^3.6.5",
"husky": "^4.2.5",
"jest": "24.9.0",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"semantic-release": "^17.0.4",
"travis-deploy-once": "5.0.11",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"@testing-library/dom": ">=5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}