-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 871 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 871 Bytes
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
{
"name": "create-typeguard",
"version": "1.0.2",
"description": "Library for creating safe Type Guards",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --skipLibCheck",
"test": "jest --config jestconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichalSzorad/create-typeguard.git"
},
"keywords": [
"Type",
"Guard",
"TypeScript"
],
"author": "Michal Szorad, miso.szorad@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/MichalSzorad/create-typeguard/issues"
},
"homepage": "https://github.com/MichalSzorad/create-typeguard#readme",
"devDependencies": {
"@types/jest": "^24.0.11",
"jest": "^24.6.0",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1"
},
"prepare": "npm run build"
}