-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 KB
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
{
"name": "berry-orm",
"version": "0.3.0",
"description": "A lightweight ORM with ❗SUPER AWESOME TYPINGS❗",
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf lib",
"build": "tsc -b tsconfig.build.json",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" \"*.js\" \"*.json\"",
"format:diff": "prettier --list-different \"src/**/*.ts\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint --cache \"src/**/*.ts\"",
"lint:fix": "eslint --cache --fix \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheNightmareX/berry-orm.git"
},
"keywords": [
"orm",
"database",
"typescript",
"frontend"
],
"author": {
"name": "Char2s",
"email": "Char2s@outlook.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TheNightmareX/berry-orm/issues"
},
"homepage": "https://github.com/TheNightmareX/berry-orm#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.5.4",
"vuepress": "^1.8.2",
"vuepress-plugin-redirect": "^1.2.5"
},
"dependencies": {
"lazy-promise": "^4.0.0"
},
"files": [
"src",
"lib",
"!**/__test__",
"!**/tsconfig.*",
"README*.md"
]
}