-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
{
"name": "lihtne",
"version": "0.0.1",
"description": "Object-Relational Mapping (ORM) from Node.js",
"main": "index.js",
"type": "module",
"types": "types/index.d.ts",
"scripts": {
"test": "ava",
"coverage": "c8 --reporter=lcov ava",
"coverage:view": "c8 --reporter=html --reporter=text ava",
"lint": "standard",
"lint:fix": "standard --fix",
"build:types": "tsc -p tsconfig.build.types.json",
"lint:types": "tsc",
"prepare": "husky install",
"release:first": "npm run release -- --first-release",
"test:watch": "ava --watch"
},
"standard": {
"ignore": [
"examples"
],
"includes": [
"test"
]
},
"repository": {
"type": "git",
"url": "[email protected]:aagamezl/lihtne.git"
},
"keywords": [],
"author": {
"name": "Álvaro José Agámez Licha",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/pg": "^8.11.6",
"ava": "^6.0.1",
"c8": "^8.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"sinon": "^17.0.1",
"standard": "^17.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@devnetic/utils": "^2.2.0",
"pg": "^8.11.3"
}
}