This repository was archived by the owner on Nov 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
{
"name": "slmf-http-connector",
"version": "0.1.2",
"description": "Simple location message format HTTP Connector based on standard ISO/IEC 24730-1:2014 ",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest --config jest.config.json && cat ./coverage/lcov.info | coveralls",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "tsc",
"docs": "typedoc --options ./typedocconfig.ts",
"prepublishOnly": "rm -rf dist && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/F-Army/SLMF-HTTP-connector.git"
},
"keywords": [
"slmf",
"http-connector",
"rtls",
"24730-1",
"uwb"
],
"author": {
"name": "Michele Biondi",
"email": "michelebiondi01@gmail.com",
"url": "https://github.com/an4cr0n"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/F-Army/SLMF-HTTP-connector/issues"
},
"homepage": "https://github.com/F-Army/SLMF-HTTP-connector#readme",
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/joi": "^14.0.0",
"@types/node": "^10.12.8",
"@types/xml2js": "^0.4.3",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.1",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"dependencies": {
"axios": "^0.18.0",
"axios-retry": "^3.1.1",
"joi": "^14.0.6",
"xml2js": "^0.4.19"
}
}