-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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": "multikeys",
"version": "1.0.1",
"description": "Multikeys data structures collection",
"author": "Vladimir Ivakin",
"license": "MIT",
"homepage": "https://github.com/Minhir/multikeys",
"keywords": [
"multikey",
"multiple key",
"map",
"set"
],
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "tsc",
"build:doc": "cat description.md > README.md && typedoc && npx concat-md --decrease-title-levels --start-title-level-at 2 docs >> README.md",
"build:doc:ci": "cat description.md > README_BASE.md && typedoc && npx concat-md --decrease-title-levels --start-title-level-at 2 docs >> README_BASE.md && cmp --silent README.md README_BASE.md || (echo 'Update README.md. Run \"npm run build:doc\" and add changes into PR.' && exit 1)",
"lint": "eslint ./src",
"test": "jest",
"test:coverage": "npm run test -- --collect-coverage"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"concat-md": "^0.5.0",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.22",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Minhir/multikeys.git"
}
}