-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "typist-json",
"version": "1.0.1",
"description": "A simple runtime JSON type checker",
"main": "./lib/index.js",
"module": "./lib/index.esm.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"test:d": "npm run build && tsd",
"lint": "eslint",
"clean": "rimraf lib",
"fix": "eslint --fix",
"build": "rollup --config rollup.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kawmra/typist-json.git"
},
"keywords": [
"json",
"type-checker",
"typescript"
],
"author": "kawmra",
"license": "MIT",
"bugs": {
"url": "https://github.com/kawmra/typist-json/issues"
},
"homepage": "https://github.com/kawmra/typist-json#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"ts-jest": "^26.5.3",
"tsd": "^0.14.0",
"tslib": "^2.1.0",
"typescript": "^4.1.5"
}
}