-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.61 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
{
"name": "filby",
"version": "0.14.0",
"description": "A framework for temporal reference data",
"keywords": [
"temporal",
"time",
"travelling",
"series",
"reference",
"data",
"database",
"postgres",
"postgresql",
"typescript"
],
"author": "Stephen Cresswell",
"license": "ISC",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"docker": "docker-compose up --detach",
"lint": "eslint .",
"lint-staged": "lint-staged",
"test": "zUnit",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"prepare": "husky install"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"eventemitter2": "^6.4.9",
"handlebars": "^4.7.8",
"marv": "^6.0.0",
"marv-pg-driver": "^5.0.0",
"papaparse": "^5.4.1",
"parse-duration": "^1.1.0",
"pg": "^8.11.3",
"pipsqueak": "^2.7.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/pg": "^8.10.9",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"nyc": "^15.1.0",
"object-path-immutable": "^4.1.2",
"pg-error-enum": "^0.7.0",
"zunit": "^4.0.2"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/filby.git"
},
"bugs": {
"url": "https://github.com/acuminous/filby/issues"
},
"homepage": "https://acuminous.github.io/filby"
}