-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "@dabapps/react-shallow-renderer",
"version": "2.0.1",
"description": "A shallow renderer for React components",
"main": "dist/index.js",
"scripts": {
"dist": "rm -rf dist && tsc --project tsconfig.dist.json",
"prettier-check": "prettier --check '**/*.{ts,tsx,js,jsx}'",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx}'",
"lint": "npm run prettier-check && tslint --project tsconfig.json '{src,tests}/**/*.{ts,tsx}'",
"typecheck": "tsc --project tsconfig.json --noEmit",
"tests": "jest",
"test": "npm run lint && npm run typecheck && npm run tests -- --runInBand --coverage",
"prepublishOnly": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabapps/react-shallow-renderer.git"
},
"keywords": [
"react",
"shallow",
"test",
"renderer",
"snapshot"
],
"author": "Jake 'Sid' Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/dabapps/react-shallow-renderer/issues"
},
"homepage": "https://github.com/dabapps/react-shallow-renderer#readme",
"dependencies": {
"@types/react": ">=16",
"@types/react-dom": ">=16",
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"jest": "^24.9.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"tslint": "^5.20.1",
"tslint-config-dabapps": "^0.6.2",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
}
}