-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "@appku/common",
"version": "0.3.4",
"description": "AppKu's official public common library of utilities.",
"repository": {
"type": "git",
"url": "git@github.com:appku/common.git"
},
"bugs": {
"url": "https://github.com/appku/stashku/issues"
},
"keywords": [
"utilities",
"utils",
"common"
],
"author": "AppKu (https://appku.com)",
"license": "MS-PL",
"type": "module",
"main": "index.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 -u tutorials --readme README.md",
"serve-docs": "npx serve ./docs"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/test/",
"/node_modules/",
"/pluralize"
],
"coveragePathIgnorePatterns": [
"/test/"
]
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@appku/jsdoc-template": "^1.1.10",
"@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"
}
}