forked from romgain/react-select-event
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"name": "react-select-event",
"version": "4.0.0",
"description": "Simulate react-select events for react-testing-library",
"main": "lib/react-select-event.cjs.js",
"module": "lib/react-select-event.es.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && npm run build:lib && npm run build:types",
"build:lib": "rollup -c",
"build:types": "tsc -p tsconfig.build.json",
"prettier:check": "prettier --list-different \"src/**/*.{ts,tsx,js,md}\" \"**/*.md\"",
"prettier:apply": "prettier --write \"src/**/*.{ts,tsx,js}\" \"**/*.md\"",
"type:check": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "jest",
"test:all-versions": "tav"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romgain/react-select-event.git"
},
"keywords": [
"react-testing-library",
"dom-testing-library",
"react-select",
"testing",
"javascript",
"unit-testing"
],
"author": "Romain Bertrand",
"license": "MIT",
"bugs": {
"url": "https://github.com/romgain/react-select-event/issues"
},
"homepage": "https://github.com/romgain/react-select-event#readme",
"dependencies": {
"@testing-library/dom": ">=5"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^9.1.3",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-select": "^3.0.8",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-select": "^3.0.8",
"rimraf": "^3.0.0",
"rollup": "^1.27.10",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^5.0.0",
"test-all-versions": "^4.1.0",
"typescript": "^3.4.5"
}
}