-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "@appku/stashku-sql",
"version": "0.8.5",
"description": "A SQL storage engine for StashKu. Allows RESTful queries to popular SQL databases.",
"repository": {
"type": "git",
"url": "[email protected]:appku/stashku-sql.git"
},
"author": "Append Media, LLC",
"license": "MS-PL",
"keywords": [
"stashku",
"sql",
"mssql",
"database"
],
"type": "module",
"main": "sql-engine.js",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --verbose --coverage",
"test-ci": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --verbose -ci",
"lint": "npx eslint ./",
"docs": "npx jsdoc -c jsdoc.json --readme README.md",
"serve-docs": "npx serve ./docs"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/docs/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/",
"/docs/"
]
},
"dependencies": {
"@appku/stashku": "^1.1.0"
},
"optionalDependencies": {
"rhino": "^5.5.6",
"pg": "^8.7.3"
},
"devDependencies": {
"@appku/jsdoc-template": "^1.1.9",
"@types/jest": "^27.4.1",
"eslint": "^8.13.0",
"eslint-plugin-jest": "^26.1.4",
"jest": "^27.5.1",
"jsdoc": "^4.0.3",
"jsdoc-plugin-intersection": "^1.0.4",
"jsdoc-plugin-typescript": "^2.0.7",
"jsdoc-plugin-typescript-new": "^1.0.0",
"serve": "^14.2.4"
}
}