-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "as-safely",
"version": "0.1.3",
"description": "TypeScript Library for safe type assertion",
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prettier": "prettier --write 'src/**/*.{ts,tsx,css}' --loglevel warn",
"lint": "eslint './src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YuitoSato/as-safely.git"
},
"keywords": [
"javascript",
"typescript",
"typechecker",
"check-type",
"javascript-type",
"primitive-types",
"plain-object",
"plain-objects",
"class-instance",
"class-identifier",
"type-checking",
"type-checker",
"type-check",
"define-type",
"get-type",
"what-type",
"is-object",
"is-plain-obj",
"is-plain-object",
"type-assertion"
],
"author": "YuitoSato",
"license": "MIT",
"bugs": {
"url": "https://github.com/YuitoSato/as-safely/issues"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"lint-staged": {
"*.{ts,tsx,css}": [
"eslint --fix",
"prettier --write --loglevel warn"
]
},
"homepage": "https://github.com/YuitoSato/as-safely#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}