forked from TheThingsArchive/node-app-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.79 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
{
"name": "ttn",
"version": "2.3.0-alpha.3",
"description": "The Things Network Client",
"main": "dist/index.js",
"scripts": {
"test": "make test",
"prepare": "flow-typed install && make build"
},
"repository": {
"type": "git",
"url": "git://github.com/TheThingsNetwork/node-app-sdk.git"
},
"author": "Johan Stokking <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheThingsNetwork/node-app-sdk/issues"
},
"homepage": "https://github.com/TheThingsNetwork/node-app-sdk#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-flow-runtime": "^0.11.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-ttn": "^1.2.3",
"documentation": "^4.0.0-rc.1",
"eslint": "^4.1.1",
"eslint-config-ttn": "^1.3.2",
"flow-bin": "^0.55.0",
"flow-typed": "^2.2.3",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"jest-preset-ttn": "^0.0.3",
"json": "^9.0.6"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"debug": "^2.6.8",
"google-protobuf": "^3.3.0",
"grpc": "^1.4.1",
"jsonwebtoken": "^7.4.1",
"mqtt": "^2.9.1",
"node-fetch": "^1.7.3",
"source-map-support": "^0.4.17",
"ttnapi": "https://github.com/thethingsnetwork/api"
},
"babel": {
"presets": [
"ttn",
"react"
],
"plugins": [
"transform-decorators-legacy"
]
},
"eslintConfig": {
"extends": "ttn",
"env": {
"node": true,
"es6": true
},
"rules": {
"import/named": "off",
"import/prefer-default-export": "off",
"no-duplicate-imports": "off",
"no-use-before-define": [
"warn",
{
"functions": false
}
]
}
},
"jest": {
"preset": "jest-preset-ttn"
}
}