-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "fars",
"version": "5.0.0",
"description": "NPM package for using FARS.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"link": "pnpm run build && pnpm link",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"postversion": "git push && git push --tags",
"prepare": "rm -rf dist && pnpm run build",
"prepublishOnly": "pnpm run test && pnpm run lint",
"preversion": "pnpm run lint",
"test": "jest --config jestconfig.json",
"test-coverage": "jest --config jestconfig.json --coverage",
"version": "pnpm run format && git add -A src"
},
"author": "Filip Stenbacka",
"license": "ISC",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"repository": {
"type": "git",
"url": "[email protected]:filiptypjeu/npm-fars.git"
},
"homepage": "https://github.com/filiptypjeu/npm-fars",
"dependencies": {
"json-endpoints": "^1.1.0"
},
"files": [
"dist/**/*"
],
"keywords": [
"fars",
"teknologföreningen",
"TF"
]
}