forked from sfakir/feiertagejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "feiertagejs",
"version": "1.2.3",
"description": "A module to calculate German holidays made for node.js",
"main": "build/feiertage.umd.js",
"module": "build/feiertage.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --runInBand",
"test:w": "jest --watch",
"lint": "tslint -p tsconfig.json -t stylish",
"format": "prettier --write '{**/*,*}.{ts,json}' '!coverage/**' '!build/**' '!package.json'",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/sfakir/feiertagejs"
},
"keywords": [
"node",
"holidays",
"feiertage",
"javascript"
],
"author": "Simon Fakir",
"license": "MIT",
"bugs": {
"url": "https://github.com/sfakir/feiertagejs/issues"
},
"homepage": "https://github.com/sfakir/feiertagejs",
"devDependencies": {
"@types/jest": "^23.3.5",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"rollup": "^0.66.6",
"rollup-plugin-typescript": "^1.0.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.4.2",
"tslint-config-prettier": "^1.14.0",
"tslint-microsoft-contrib": "^5.1.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"html",
"text",
"lcov"
]
},
"files": [
"build",
"docs.md",
"Readme.md",
"index.d.ts"
]
}