-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "lobid-client",
"version": "1.0.4",
"description": "Client for LOBID-GND",
"main": "./dist/LobidClient.js",
"files": "./dist",
"types": "./dist/LobidClient.d.ts",
"author": "Oliver Pohl, TELOTA",
"license": "Apache 2.0",
"repository": {
"type" : "git",
"url" : "https://github.com/telota/lobid-client"
},
"keywords": ["gnd", "lobid", "typescript", "authority files", "Gemeinsame Normdatei"],
"scripts": {
"build": "tsc --declaration",
"lint": "tslint -c tslint.json src/**/*.ts --project tsconfig.json",
"test": "mocha --require ts-node/register test/**/*.spec.ts",
"coverage": "nyc mocha"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/axios-mock-adapter": "^1.10.0",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/es6-promise": "^3.3.0",
"@types/lodash": "^4.14.118",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.1.6"
},
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.11"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text",
"html"
],
"all": true
}
}