-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
58 lines (58 loc) · 1.97 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
{
"name": "@klarna/remote-frames",
"version": "0.3.13",
"description": "Render a subset of the React tree to a different location, from many locations, without having to coordinate them",
"main": "src/index.js",
"module": "build/esm/index.js",
"scripts": {
"clean": "rimraf -- build",
"build:esm": "cross-env BABEL_ENV=esm babel src/ --copy-files --out-dir build/esm/ --ignore spec.js,example/",
"build:cjs": "cross-env BABEL_ENV=cjs babel src/ --copy-files --out-dir build/cjs/ --ignore example/",
"build": "npm run clean && cross-env NODE_ENV=production run-p build:*",
"format": "prettier --semi false --trailing-comma es5 --single-quote --write 'src/*.js' 'src/remote-frame/*.js'",
"lint": "eslint 'src/*.js' 'src/remote-frame/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klarna/remote-frames.git"
},
"keywords": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/klarna/remote-frames/issues"
},
"homepage": "https://github.com/klarna/remote-frames#readme",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.6.0",
"@types/react": "^16.3.9",
"@types/react-dom": "^16.0.5",
"cross-env": "^5.0.5",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"prop-types": "^15.6.0",
"ramda": "^0.24.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.0.6",
"recompose": "^0.25.1",
"redux": "^3.7.2",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"prop-types": ">=15",
"ramda": ">=0.24",
"react": ">=16",
"react-dom": ">=16",
"recompose": ">=0.25"
}
}