-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
{
"name": "openals",
"version": "0.0.1",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest",
"lint": "eslint src",
"makedocs": "typedoc src",
"sanity-checks": "npm run build && npm run lint"
},
"files": [
"lib"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.spec\\.ts$"
},
"keywords": [
"minimal",
"typescript",
"boilerplate"
],
"author": "Michal Zalecki <michal@michalzalecki.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/MichalZalecki/ts-lib-boilerplate.git"
},
"bugs": {
"url": "https://github.com/MichalZalecki/ts-lib-boilerplate/issues"
},
"homepage": "https://github.com/MichalZalecki/ts-lib-boilerplate#readme",
"description": "Minimal TypeScript library boilerplate",
"devDependencies": {
"@types/jest": "^21.1.5",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"jest": "^21.2.1",
"tplant": "^2.3.6",
"ts-jest": "^21.1.4",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/request": "^2.48.5",
"@types/uuid": "^8.3.0",
"jsonschema": "^1.4.0",
"nanoevents": "^5.1.10",
"postman-collection": "*",
"request": "^2.88.2",
"uuid": "^8.3.1"
}
}