-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
71
72
73
{
"name": "@appku/stashku",
"version": "1.1.4",
"description": "Stashku is a flat-data, format agnostic, platform for performing RESTful operations on data storage mediums such as databases, and files, and even APIs.",
"repository": {
"type": "git",
"url": "git@github.com:appku/stashku.git"
},
"bugs": {
"url": "https://github.com/appku/stashku/issues"
},
"keywords": [
"model",
"storage",
"orm",
"data"
],
"bin": {
"stashku": "cli/main.js"
},
"author": "Append Media, LLC",
"license": "MS-PL",
"type": "module",
"main": "stashku.js",
"scripts": {
"build": "npx webpack",
"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 -u tutorials --readme README.md",
"serve-docs": "npx serve ./docs",
"cli": "node cli/main.js"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/test/",
"/node_modules/",
"/utilities/pluralize"
],
"coveragePathIgnorePatterns": [
"/test/"
]
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@appku/common": "^0.1.0",
"@appku/fairu": "^1.0.8",
"commander": "^9.2.0",
"deep-is": "^0.1.3",
"dot": "^1.1.3",
"dotenv": "^16.0.0",
"node-fetch": "^3.2.4",
"qs": "^6.10.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",
"jest-fetch-mock": "^3.0.3",
"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",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
}
}