forked from tajo/react-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
69
70
71
{
"name": "react-portal",
"version": "3.0.0",
"description": "React component for transportation of modals, lightboxes, loading bars... to document.body",
"main": "build/portal",
"files": [
"*.md",
"LICENSE",
"lib",
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/tajo/react-portal"
},
"author": "Vojtech Miksu <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node devServerIndex.js",
"build": "mkdir -p build && babel ./lib/portal.js --out-file ./build/portal.js",
"build:examples": "npm run clean && npm run build:examples:webpack",
"build:examples:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.babel.js",
"clean": "rimraf build",
"test": "mocha",
"lint": "mocha test/eslint_spec.js",
"prepublish": "cross-env NODE_ENV=production npm run build"
},
"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": "^6.0.4",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-register": "^6.8.0",
"cross-env": "^1.0.7",
"enzyme": "^2.3.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.3",
"jsdom": "^9.0.0",
"mocha": "^2.3.4",
"mocha-eslint": "^2.0.2",
"react": "^15.2.0",
"react-addons-test-utils": "^15.2.0",
"react-dom": "^15.2.0",
"rimraf": "^2.5.0",
"sinon": "^1.17.4",
"tween.js": "^16.3.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.6.0"
}
}