-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "react-conduit",
"version": "3.1.0",
"description": "Place components anywhere in your DOM tree",
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/trabe/react-conduit.git"
},
"bugs": {
"url": "https://github.com/trabe/react-conduit/issues"
},
"homepage": "https://github.com/trabe/react-conduit",
"author": "Roman Coedo <[email protected]>",
"contributors": [
"David Barral <[email protected]>",
"Asís García <[email protected]>"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf ./lib",
"compile": "babel --verbose -d lib/ src/",
"lint": "eslint ./src ./test",
"test": "jest",
"prepublish": "npm run clean && npm run test && npm run compile"
},
"dependencies": {
"prop-types": "^15.6.0",
"uuid": "^3.4.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-addons-create-fragment": "^15.6.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-unobtrusive": "^1.2.5",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-addons-create-fragment": "^15.6.2",
"react-dom": "^16.12.0"
}
}