forked from aweary/enzyme-adapter-preact
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "enzyme-adapter-preact",
"version": "0.2.0",
"description": "A Preact adapater for the Enzyme testing utility",
"main": "lib/index.js",
"module": "src/index.js",
"author": "Brandon Dail",
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/aweary/enzyme-adapter-preact.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chai-subset": "^1.6.0",
"enzyme": "^3.3.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"preact": "^8.2.7",
"rimraf": "^2.6.2",
"sinon": "^4.1.3"
},
"peerDependencies": {
"enzyme": "^3.3.0",
"preact": "^8.2.7"
},
"dependencies": {
"enzyme-adapter-utils": "^1.3.0",
"object.values": "^1.0.4",
"preact-compat": "^3.18.0",
"preact-render-to-string": "^3.7.0",
"proptypes": "^1.1.0",
"react": "^16.2.0",
"react-test-renderer": "^16.2.0"
},
"files": [
"lib",
"src"
]
}