-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "goflink-client",
"version": "0.1.3",
"description": "TypeScript NPM Module Boilerplate",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepublishOnly": "yarn lint",
"generate": "npx st-open-api -n BaseService -s ./src/schema.yaml -o src/gen -p node"
},
"repository": {
"type": "git",
"url": "[email protected]:nowaythatworked/goflink-client.git"
},
"keywords": [
"boilerplate",
"typescript"
],
"author": "Jan Czekala",
"license": "MIT",
"devDependencies": {
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"eslint": "7.32.0",
"eslint-plugin-jest": "26.0.0",
"jest": "27.4.7",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
},
"files": [
"lib/**/*"
]
}