-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.5 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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "foobot-graphql",
"version": "2.1.0",
"description": "GraphQL server for Foobot device data.",
"engines": {
"node": ">=4.6.0"
},
"main": "lib/index.js",
"bin": {
"foobot-graphql": "lib/index.js"
},
"files": [
"lib"
],
"scripts": {
"build": "npm run build:lib && npm run build:docs",
"build:lib": "BABEL_ENV=production babel -d lib src",
"build:docs": "doctoc --title \"## Contents\" README.md",
"clean": "rimraf lib",
"foobot:datapoints": "babel-node src/client.js datapoints",
"foobot:devices": "babel-node src/client.js devices",
"foobot:login": "babel-node src/client.js login",
"lint": "standard --verbose | snazzy",
"prepublish": "npm run clean && npm run build",
"print-schema": "babel-node src/schema.js",
"start": "node lib/index.js",
"start:dev": "nodemon --exec babel-node src/index.js",
"test": "npm run lint && npm run test:only",
"test:only": "nyc ava"
},
"pre-commit": [
"build:docs",
"lint"
],
"keywords": [
"foobot",
"foobot.io",
"graphql",
"api",
"express",
"middleware",
"air quality",
"iaq"
],
"homepage": "https://github.com/exogen/foobot-graphql",
"author": {
"name": "Brian Beck",
"email": "exogen@gmail.com",
"url": "http://brianbeck.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/exogen/foobot-graphql.git"
},
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"doctoc": "^1.3.0",
"nodemon": "^1.10.2",
"nyc": "^10.2.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"snazzy": "^7.0.0",
"standard": "^10.0.1"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"dataloader": "^1.3.0",
"date-fns": "^1.28.2",
"debug": "^2.6.3",
"decimal.js": "^7.2.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-graphql": "^0.6.4",
"graphql": "^0.9.2",
"graphql-date": "^1.0.3",
"humanize-duration": "^3.10.0",
"read": "^1.0.7",
"request": "^2.81.0",
"supports-color": "^3.2.3",
"uuid": "^3.0.1"
},
"config": {
"port": 3000
},
"standard": {
"parser": "babel-eslint"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
}
}