-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "nymphjs",
"version": "1.0.0",
"description": "An ORM for Node.js.",
"scripts": {
"format": "prettier --ignore-unknown --write \"**/*\"",
"lint": "prettier --ignore-unknown --check \"**/*\"",
"clean": "lerna run clean",
"docs": "typedoc",
"prepare": "husky && npm run lint",
"postinstall": "npm run build",
"build": "lerna run build",
"test": "lerna run test --concurrency=1 --stream --no-prefix --no-progress --no-bail -- --passWithNoTests",
"test:db:start": "lerna run test:db:start --stream --parallel",
"test:db:stop": "lerna run test:db:stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/nymphjs.git"
},
"keywords": [
"nymph",
"ORM",
"object relational mapper"
],
"author": "Hunter Perrin <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/nymphjs/issues"
},
"homepage": "https://github.com/sciactive/nymphjs#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}