-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "react-crouton",
"version": "1.0.0",
"description": "A message component for reactjs.",
"main": "index.js",
"keywords": [
"react-component",
"message",
"crouton",
"alert"
],
"repository": {
"type": "git",
"url": "[email protected]:xeodou/react-crouton.git"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"watch": "./node_modules/.bin/gulp watch --gulpfile example/gulpfile.js",
"deploy": "./node_modules/.bin/gulp deploy --gulpfile example/gulpfile.js"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/create-react-class",
"<rootDir>/node_modules/prop-types"
]
},
"peerDependencies": {
"react": ">=15.0.x"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"codemirror": "^4.6.0",
"eggshell": "^0.1.20",
"gulp": "^3.8.8",
"gulp-browserify": "^0.5.0",
"gulp-connect": "^2.2.0",
"gulp-gh-pages": "^0.3.4",
"gulp-load-plugins": "^0.6.0",
"gulp-rimraf": "^0.1.0",
"gulp-sass": "^2.3.2",
"gulp-size": "^1.1.0",
"jest-cli": "^13.2.3",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"reactify": "^1.1.1"
},
"dependencies": {
"create-react-class": "^15.6.2",
"prop-types": "^15.6.0"
}
}