-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.44 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
{
"name": "mozaik-ext-sheets",
"version": "0.6.0",
"description": "Mozaïk extension for listing data from Google Sheets",
"author": "SC5",
"license": "MIT",
"engines": {
"node": "4.0.x"
},
"repository": {
"type": "git",
"url": "http://github.com/SC5/mozaik-ext-sheets.git"
},
"bugs": {
"url": "https://github.com/SC5/mozaik-ext-sheets/issues"
},
"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",
"google-sheets-api": "^0.2.2",
"lodash": "^4.10.0",
"lodash.samplesize": "^4.2.0",
"moment": "^2.9.0",
"reflux": "0.4.1",
"string-format": "^0.5.0"
},
"main": "./components.js",
"devDependencies": {
"ava": "^0.16.0",
"babel-eslint": "6.0.2",
"babel-register": "6.7.2",
"eslint": "^3.5.0",
"eslint-plugin-react": "^6.3.0",
"proxyquire": "^1.7.10",
"react": "^0.13.3",
"react-mixin": "3.0.4"
},
"peerDependencies": {
"mozaik": ">=1.4.2",
"react": "^0.13.3"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"test": "ava",
"lint": "eslint --ext .js --ext .jsx ./src/** ./test/**"
},
"ava": {
"files": [
"tests/*.test.js"
],
"tap": false,
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}