forked from tajo/react-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
62
63
64
65
66
67
68
{
"name": "react-portal",
"version": "3.0.0",
"description": "React component for transportation of modals, lightboxes, loading bars... to document.body",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"*.md",
"LICENSE",
"lib",
"es"
],
"repository": {
"type": "git",
"url": "https://github.com/tajo/react-portal"
},
"author": "Vojtech Miksu <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run build-es && npm run build-cjs",
"build-es": "babel ./src --out-dir ./es",
"build-cjs": "BABEL_ENV=commonjs babel ./src --out-dir ./lib",
"build:examples": "cross-env NODE_ENV=production webpack",
"prepublish": "cross-env NODE_ENV=production npm run build",
"lint": "eslint webpack.config.js src/**/*.js",
"prettier": "prettier --single-quote --write \"{webpack.config.js,{src,examples}/**/*.js}\"",
"test": "cross-env BABEL_ENV=commonjs jest"
},
"tags": [
"react"
],
"keywords": [
"react",
"react-component",
"modal",
"lightbox",
"react-portal",
"portal",
"transportation"
],
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"cross-env": "^5.0.1",
"enzyme": "^2.3.0",
"eslint": "^4.3.0",
"eslint-plugin-prettier": "^2.1.2",
"jest": "^20.0.4",
"prettier": "^1.5.3",
"react": "^15.2.0",
"react-addons-test-utils": "^15.2.0",
"react-dom": "^15.2.0",
"rimraf": "^2.5.0",
"sinon": "^2.4.1",
"tween.js": "^16.3.1",
"webpack": "^3.4.1"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}