-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.86 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@mighty-justice/tester",
"version": "2.0.3",
"description": "Bootstrap your tests!",
"main": "dist/index.js",
"module": "dist/tester.esm.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"analyze": "source-map-explorer 'dist/*.js'",
"build": "tsdx build",
"deploy": "np",
"format": "tsdx lint --fix",
"lint": "tsdx lint",
"prepublishOnly": "tsdx build",
"preversion": "npm run lint",
"start": "tsdx watch",
"test": "tsdx test",
"version": "npm run build && git add dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mighty-justice/tester.git"
},
"keywords": [],
"author": "Mighty <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mighty-justice/tester/issues"
},
"homepage": "https://mighty-justice.github.io/tester/",
"prettier": {
"printWidth": 120,
"proseWrap": "always",
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.tsx",
"src/**/*.ts"
],
"setupFilesAfterEnv": [
"./setupTests.tsx"
]
},
"files": [
"dist",
"index.js"
],
"peerDependencies": {
"enzyme": ">=3.8",
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@types/enzyme": "^3.10.7",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.49",
"@types/react-dom": "^17.0.10",
"babel-jest": "^26.3.0",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"np": "^5.0.0",
"react": "^16",
"react-dom": "^16",
"source-map-explorer": "^2.5.0",
"tsdx": "^0.14.0",
"typescript": "^3"
},
"dependencies": {}
}