forked from mzgoddard/preact-render-spy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.62 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
{
"name": "preact-render-spy",
"version": "1.2.1",
"description": "Render preact components with access to the produced virtual dom for testing.",
"repository": {
"type": "git",
"url": "https://github.com/mzgoddard/preact-render-spy"
},
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test-jest": "jest --config jest.config.json",
"test-jest-webpack": "jest-webpack",
"test": "npm run test-jest",
"pretest": "npm run lint",
"lint": "eslint --ignore-pattern='!.eslintrc.js' --ext js,jsx src .eslintrc.js *.js"
},
"jest": {
"transform": {},
"snapshotSerializers": [
"./snapshot"
]
},
"keywords": [
"preact",
"vdom",
"jsx",
"testing",
"test"
],
"author": {
"name": "Michael \"Z\" Goddard",
"email": "mzgoddard@gmail.com"
},
"contributors": [
{
"name": "Michael \"Z\" Goddard",
"email": "mzgoddard@gmail.com"
},
{
"name": "Corey Frang",
"email": "gnarf37@gmail.com"
}
],
"license": "ISC",
"devDependencies": {
"@mzgoddard/jest-webpack": "^0.0.12",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-jest": "^20.0.3",
"babel-preset-preact": "^1.1.0",
"eslint": "^4.2.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-react": "^7.1.0",
"jest": "^20.0.4",
"preact": "^8.2.1",
"typescript": "^2.4.1",
"webpack": "^2.7.0"
},
"peerDependencies": {
"preact": "^8.1.0"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"object.entries": "^1.0.4",
"preact-render-to-string": "^3.6.3"
}
}