-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "simple-react-modal",
"description": "The simplest modal",
"version": "0.5.1",
"main": "./build/simple-modal.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"test": "mocha --opts ./mocha.opts; eslint ./src/ --ext .jsx,.js --global require,exports:true"
},
"repository": {
"type": "git",
"url": "https://github.com/legitcode/modal.git"
},
"keywords": [
"reactjs",
"modal",
"react",
"component"
],
"browserify-shim": {
"react": "global:React"
},
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/legitcode/modal/issues"
},
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.3.0",
"eslint": "3.2.2",
"eslint-plugin-react": "6.0.0",
"gulp": "^3.8.11",
"legit-tests": "^0.4.4",
"mocha": "^2.3.3",
"react-component-gulp-tasks": "^0.7.0"
},
"homepage": "https://github.com/legitcode/modal",
"peerDependencies": {
"react": ">=0.14 || >=15.0"
}
}