This repository has been archived by the owner on Aug 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "oaf-svelte-routing",
"version": "2.0.0",
"main": "dist",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oaf-project/oaf-svelte-routing.git"
},
"dependencies": {
"oaf-routing": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.7",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-jest": "^26.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-functional": "^3.0.1",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-total-functions": "^1.40.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"svelte-routing": "^1.4.2",
"ts-jest": "^26.1.3",
"type-coverage": "^2.9.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .ts",
"format": "prettier --write '{src,test}/**/*.{ts,tsx}'",
"documentation": "typedoc --excludeNotExported --excludePrivate --out docs src && cp docs_config.yml ./docs/_config.yml",
"release": "yarn build && yarn lint && yarn type-coverage && yarn format-lint && yarn publish && yarn documentation",
"test": "jest"
},
"prettier": {
"trailingComma": "all"
},
"typeCoverage": {
"atLeast": 100
},
"peerDependencies": {
"svelte-routing": "^1.0.0"
}
}