-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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": "sudety-utils",
"version": "1.0.1",
"description": "Just an experiment creating a typescript npm package",
"scripts": {
"test": "jest ./src",
"build": "tsc",
"lint": "eslint . --fix",
"format": "prettier --write .",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run format && npm run test",
"version": "npm run format && git add -A src",
"postpublish": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otavlna/sudety-utils.git"
},
"author": "Ota Vlna",
"license": "MIT",
"bugs": {
"url": "https://github.com/otavlna/sudety-utils/issues"
},
"homepage": "https://github.com/otavlna/sudety-utils#readme",
"files": [
"lib/**/*"
],
"keywords": [
"sudety"
],
"devDependencies": {
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"prettier": "2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}