forked from 38degrees/safe-portals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 945 Bytes
/
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
{
"name": "safe-portals",
"version": "3.1.1",
"description": "Type-safe symmetric composable serializers",
"main": "dist/index.js",
"types": "dist/index.d.js",
"sideEffects": false,
"scripts": {
"clean": "rm -rf ./coverage",
"build": "npx tsc",
"test": "npx jest --coverage"
},
"author": "Tom Morton <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tomm/safe-portals.git"
},
"homepage": "https://github.com/tomm/safe-portals",
"keywords": [
"serialization",
"validation",
"json",
"schema"
],
"files": [
"src/**/*.ts",
"dist/**/*.d.ts",
"dist/**/*.js",
"package.json",
"README.md",
"CODEOWNERS",
"LICENSE",
"tsconfig.json"
],
"devDependencies": {
"@swc-node/jest": "^1.3.1",
"@swc/core": "1.3.9",
"@types/jest": "^25.1.3",
"jest": "^25.5.4",
"typescript": "^4.3.5"
}
}