This repository was archived by the owner on Feb 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 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
{
"name": "react-interop",
"version": "0.3.0",
"description": "Interop layer for consuming React components with other JavaScript libraries",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"clean": "npm run clean:build && npm run clean:demo",
"build": "babel src --out-dir lib",
"clean:build": "rm -rf lib",
"demo": "webpack --config ./demo/webpack.config.babel.js && open ./demo/consuming-application.html",
"clean:demo": "rm ./demo/*-packed.js || true",
"lint": "eslint .",
"test": "jest",
"release": "npm run clean && npm run build && standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/concur/react-interop.git"
},
"keywords": [
"react",
"component",
"render",
"javascript",
"interop"
],
"author": "Jeff Handley",
"license": "MIT",
"bugs": {
"url": "https://github.com/concur/react-interop/issues"
},
"homepage": "https://github.com/concur/react-interop#readme",
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-loosely-restrict-imports": "^0.1.15",
"eslint-plugin-react": "^7.0.1",
"jest": "^22.4.3",
"prop-types": "^15.5.10",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
"standard-version": "^4.3.0",
"webpack": "^2.6.1"
}
}