-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
91 lines (91 loc) · 2 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
88
89
90
91
{
"name": "mozaik-ext-analytics",
"version": "0.3.2",
"description": "Google Analytics widgets for Mozaïk dashboard",
"main": "./components.js",
"scripts": {
"start": "npm run cli",
"cli": "node cli.js",
"prepublish": "gulp lib",
"test": "ava"
},
"author": {
"name": "SC5",
"url": "http://sc5.io/"
},
"contributors": [
{
"name": "Juha Mustonen",
"email": "juha.p.mustonen@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/SC5/mozaik-ext-analytics.git"
},
"license": "MIT",
"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",
"chalk": "1.1.3",
"convict": "^0.6.1",
"lodash": "^3.5.0",
"moment": "^2.9.0",
"moment-duration-format": "1.3.0",
"c3": "^0.4.9",
"dotenv": "^0.5.1",
"googleapis": "^1.1.3",
"pretty-print": "^1.0.0",
"reflux": "0.4.1",
"request": "^2.53.0",
"string-format": "^0.5.0",
"superagent": "1.8.3",
"superagent-bluebird-promise": "3.0.0",
"validator": "^3.30.0",
"yargs": "^4.8.1"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-eslint": "6.0.2",
"babel-register": "6.7.2",
"del": "^1.1.1",
"eslint": "^2.13.0",
"eslint-plugin-react": "^5.2.2",
"gulp": "^3.8.11",
"gulp-6to5": "^3.0.0",
"gulp-if": "^1.2.5",
"gulp-plumber": "^0.6.6",
"gulp-regex-replace": "^0.2.3",
"gulp-rename": "^1.2.0",
"gulp-strip-debug": "^1.0.2",
"jsdom": "^9.2.1",
"optimist": "^0.6.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",
"./tests/setup.js"
],
"babel": "inherit"
}
}