-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 1.56 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
{
"name": "mozaik-ext-calendar",
"version": "0.3.0",
"description": "Mozaik Google calendar widgets",
"repository": {
"type": "git",
"url": "http://github.com/SC5/mozaik-ext-calendar.git"
},
"author": {
"name": "SC5",
"url": "https://github.com/SC5/mozaik-ext-calendar"
},
"license": "MIT",
"homepage": "https://github.com/SC5/mozaik-ext-calendar",
"main": "./components.js",
"dependencies": {
"babel-core": "6.7.6",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"bluebird": "3.3.5",
"convict": "^0.6.1",
"googleapis": "^1.1.4",
"moment": "^2.9.0",
"native-promise-only": "^0.7.6-a",
"react-gravatar": "^1.0.0",
"react-mixin": "3.0.4",
"reflux": "0.4.1",
"superagent": "1.8.3",
"superagent-bluebird-promise": "3.0.0",
"crypto-js": "^3.1.2-5"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-eslint": "6.0.2",
"babel-register": "6.7.2",
"eslint": "^2.13.0",
"eslint-plugin-react": "^5.2.2",
"jsdom": "^9.2.1",
"proxyquire": "^1.7.9",
"react": "^0.13.3",
"touch": "0.0.3"
},
"peerDependencies": {
"mozaik": ">=1.4.2",
"react": "^0.13.3"
},
"browserify": {
"transform": [
"babelify"
]
},
"ava": {
"files": [
"tests/*.test.js"
],
"tap": false,
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"scripts": {
"eslint": "eslint --ext .js --ext .jsx ./src/** ./test/**",
"lint": "npm run eslint",
"test": "ava"
}
}