forked from wix-incubator/as-typed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "as-typed",
"version": "0.0.0",
"description": "Static TypeScript types from a literal JSONSchema type",
"types": "index.d.ts",
"scripts": {
"test": "tsc -noEmit",
"eslint:fix": "eslint --fix '*.ts'",
"eslint:check": "eslint '*.ts'"
},
"keywords": [
"typescript",
"jsonschema",
"json",
"schema"
],
"author": "Guilherme Bernal <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lbguilherme/as-typed.git"
},
"bugs": {
"url": "https://github.com/lbguilherme/as-typed/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/lbguilherme/as-typed#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@typescript-eslint/typescript-estree": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"spec.ts": "^1.1.3",
"typescript": "^4.8.2"
}
}