-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "eq3ble",
"version": "1.2.0",
"description": "Node package to control an EQ3 bluetooth thermostat",
"main": "dist/index.js",
"scripts": {
"start": "NODE=production node ./dist/index",
"dev": "./node_modules/.bin/babel-watch ./src/index",
"lint": "./node_modules/.bin/eslint src",
"test": "npm run lint",
"build": "./node_modules/.bin/babel src -d dist",
"prepare": "npm run build",
"prepublish": "npm run build"
},
"author": "Max Nowack <[email protected]>",
"license": "GPLv3",
"keywords": [
"bluetooth",
"thermostat",
"homeautomation"
],
"repository": {
"type": "git",
"url": "git://github.com/maxnowack/node-eq3ble.git"
},
"bugs": {
"url": "http://github.com/maxnowack/node-eq3ble/issues"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": [
"airbnb-base"
],
"parser": "babel-eslint"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-class-properties"
]
},
"dependencies": {
"babel-core": "6.26.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.0.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-watch": "2.0.7",
"eslint": "4.8.0",
"eslint-config-airbnb-base": "12.0.2",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.7.0",
"noble-device": "git+https://github.com/maxnowack/noble-device.git"
}
}