-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-remodal",
"version": "1.0.3",
"description": "A better (animated, customizable, tested etc.) modal for React",
"keywords": [
"react-component",
"react-modal",
"react-remodal",
"react-dialog",
"modal",
"remodal",
"dialog"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tomgrooffer/react-remodal.git"
},
"author": "Mike Vercoelen <mike.vercoelen@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomgrooffer/react-remodal/issues"
},
"homepage": "http://tomgrooffer.github.io/react-remodal/",
"scripts": {
"start": "gulp watch",
"prepublish": "gulp prepublish",
"gh-pages": "gulp publish-github-pages",
"test": "NODE_ENV=test mocha --compilers js:babel-register --reporter dot --slow 1000 --full-trace --timeout 1500 --reporter spec --require test/support/helper.js test/**/*.spec.js"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^5.0.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"babelify": "^7.2.0",
"browser-sync": "^2.11.1",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.4.1",
"del": "^2.2.0",
"enzyme": "^2.0.0",
"eslint": "^2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"expect": "^1.14.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.1.2",
"gulp-gh-pages": "^0.5.4",
"gulp-sass": "^2.2.0",
"gulp-sass-glob": "^1.0.3",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"run-sequence": "^1.1.5",
"sinon": "^1.17.3",
"stream-combiner2": "^1.1.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"react": "^0.14.7",
"blacklist": "^1.1.2",
"scrollbar-width": "^3.1.1",
"react-dom": "^0.14.7",
"react-portal-wrap": "^1.1.1",
"react-addons-css-transition-group": "^0.14.7",
"classnames": "^2.2.3"
}
}