-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1011 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
44
45
46
{
"name": "@codefeathers/runtype",
"version": "0.11.0",
"main": "dist",
"types": "dist/index.d.ts",
"description": "Runtime type assertions that return",
"author": "Muthu Kumar <@MKRhere> (https://mkr.pw)",
"contributors": [
"Thomas Rory Gummerson <[email protected]> (https://trgwii.no)",
"Wojciech Pawlik <[email protected]>"
],
"license": "MIT",
"tags": [
"runtime",
"types",
"validation",
"assertion",
"testing"
],
"scripts": {
"test": "ava",
"build": "rimraf dist && tsc",
"build:w": "rimraf dist && tsc --watch",
"prepare": "npm run build"
},
"files": [
"dist/*",
"util.d.ts",
"package.json",
"README.md",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codefeathers/runtype.git"
},
"bugs": {
"url": "https://github.com/codefeathers/runtype/issues"
},
"homepage": "https://github.com/codefeathers/runtype#readme",
"devDependencies": {
"ava": "^3.15.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.10"
}
}