-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.51 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
{
"private": true,
"name": "tsatsiki",
"version": "0.0.1",
"homepage": "https://github.com/hurryabit/tsatsiki#readme",
"author": "Martin Huschenbett <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hurryabit/tsatsiki.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"deep-equal": "^2.0.4"
},
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:watch": "tsc --watch",
"test": "jest",
"lint": "eslint --ext .js,.ts --max-warnings 0 src/ test/"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-inferrable-types": "off"
}
}
}