This repository has been archived by the owner on Apr 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
{
"name": "gnib-ireland-client",
"version": "1.0.32",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "ts-node ./src/index.ts",
"build": "rm -fr ./dist && tsc",
"prepublish": "npm run build && ./node_modules/npm-auto-version/bin/npm-auto-version",
"postpublish": "git add package.json && git commit -am \"update package version\" && git push && git push origin --tags",
"test": "nyc jasmine-ts \"./specs/**/*.spec.ts\"",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricardodantas/gnib-ireland-client.git"
},
"keywords": [
"gnib",
"typescript",
"library",
"ireland"
],
"author": "Ricardo Dantas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ricardodantas/gnib-ireland-client/issues"
},
"homepage": "https://github.com/ricardodantas/gnib-ireland-client#readme",
"dependencies": {
"node-fetch": "^2.3.0"
},
"devDependencies": {
"@types/jasmine": "^3.5.10",
"@types/node": "~14.0.9",
"coveralls": "^3.0.0",
"jasmine-ts": "^0.2.1",
"npm-auto-version": "^1.0.0",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"engine": "node >= 6.10.3",
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 66,
"reporter": [
"lcov",
"text-summary"
],
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"./specs/**/*.spec.js",
"dist",
"coverage",
"node_modules"
]
}
}