-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.36 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
{
"author": "Florian Wendelborn",
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "7.6"
}
}
]
]
},
"bugs": {
"url": "https://github.com/dodekeract/fritz-box/issues"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"dayjs": "^1.8.16",
"superagent": "^5.1.0"
},
"description": "FRITZ!Box API",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"nodemon": "^1.19.4"
},
"homepage": "https://github.com/dodekeract/fritz-box#readme",
"keywords": [
"fritzbox",
"fritz-box",
"api",
"http",
"rest",
"router",
"control",
"smartflat",
"smarthome"
],
"license": "MIT",
"main": "build/",
"name": "fritz-box",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/dodekeract/fritz-box.git"
},
"scripts": {
"build": "babel source -d build",
"postpublish": "git tag $(node -p \"require('./package.json').version\") && git push --tags",
"prepublishOnly": "yarn run build",
"start": "node build/",
"watch": "nodemon --watch source/ --exec \"yarn run build && yarn run start\""
},
"version": "1.2.1"
}