This repository has been archived by the owner on Oct 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"name": "enzyme-adapter-inferno",
"description": "Inferno enzyme adapter",
"version": "1.3.1",
"main": "dist/InfernoEnzymeAdapter.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint . --ignore-path .gitignore ",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run unit",
"publish": "semantic-release",
"prepublish": "npm run build",
"prepare": "npm run build",
"unit": "BABEL_ENV=test mocha --exit --require test/_helpers/setup --compilers js:@babel/register,jsx:@babel/register --recursive test"
},
"author": "Edd Yerburgh",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-inferno": "^5.1.0",
"chai": "^4.1.2",
"enzyme": "^3.5.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-inferno": "^7.10.0",
"inferno": "^5.4.2",
"inferno-component": "^5.4.2",
"inferno-create-class": "^5.4.2",
"inferno-create-element": "^5.4.2",
"inferno-server": "^5.4.2",
"inferno-test-utils": "^5.4.2",
"jest": "^23.5.0",
"jsdom": "^7.2.2",
"mocha": "^5.2.0",
"prop-types": "^15.6.2",
"semantic-release": "^15.9.12",
"sinon": "^6.1.5"
},
"peerDependencies": {
"enzyme": "^3.1.0",
"inferno": "4.x || 5.x",
"inferno-create-element": "4.x || 5.x",
"inferno-server": "4.x || 5.x"
},
"dependencies": {
"inferno-vnode-flags": "^5.4.2"
}
}