-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.85 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
{
"name": "react-beautiful-dnd-test-utils",
"version": "4.1.1",
"description": "Test utils for react-beautiful-dnd built with react-testing-library.",
"main": "dist/index.cjs.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"prettier": "prettier \"{src,__{tests,mocks}__}/**/*.+(ts|tsx|json|css)\"",
"format:check": "npm run prettier -- --list-different",
"format:fix": "npm run prettier -- --write",
"validate": "npm run lint && npm run format:check",
"prebuild": "npm run validate",
"build:clean": "rimraf dist",
"build:dist": "rollup -c",
"build": "npm run build:clean && npm run build:dist",
"prepublishOnly": "npm run build"
},
"repository": "colinrobertbrooks/react-beautiful-dnd-test-utils",
"keywords": [
"react",
"drag and drop",
"dnd",
"testing",
"jsdom",
"unit",
"integration"
],
"author": "Colin Brooks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/colinrobertbrooks/react-beautiful-dnd-test-utils/issues"
},
"homepage": "https://github.com/colinrobertbrooks/react-beautiful-dnd-test-utils#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"eslint": "^7.5.0",
"eslint-config-colinrobertbrooks": "2.1.1",
"jest": "^26.6.0",
"prettier": "^1.18.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"@testing-library/jest-dom": ">=5",
"@testing-library/react": ">=11",
"@testing-library/user-event": ">=13",
"jest": ">=26"
},
"engines": {
"node": "^10.12.0 || >=12.0.0",
"npm": ">=6"
}
}