forked from hanse/react-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.27 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
{
"name": "gregory",
"version": "0.3.1",
"description": "React.js calendar component.",
"repository": {
"type": "git",
"url": "[email protected]:fiskus/gregory"
},
"main": "./lib/index.js",
"author": "Hanse",
"contributors": [
"Maxim Chervonny <[email protected]> (http://chervonny.ru/en)"
],
"license": "MIT",
"keywords": [
"calendar",
"react",
"react-component"
],
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"envify": "^3.4.0",
"gulp": "^3.9.1",
"gulp-connect": "^4.0.0",
"gulp-jscs": "^3.0.2",
"gulp-jscs-stylish": "^1.4.0",
"gulp-jshint": "^1.11.2",
"gulp-pug": "^3.0.2",
"gulp-stylus": "^2.3.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7"
},
"dependencies": {
"moment": "^2.13.0"
},
"peerDependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2"
},
"scripts": {
"start": "gulp examples",
"test": "./node_modules/.bin/gulp test"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
}
}