forked from sinclairzx81/typebox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
43
44
45
46
47
48
49
50
51
52
{
"name": "@serverless-seoul/typebox",
"version": "2.0.0",
"description": "JSONSchema Type Builder with Static Type Resolution for TypeScript",
"keywords": [
"json-schema",
"typescript",
"static-types",
"runtime-typechecking"
],
"author": "Catch Fashion",
"license": "MIT",
"main": "dist/typebox.js",
"types": "dist/typebox.d.ts",
"files": [
"license",
"CHANGELOG.md",
"readme.md",
"dist/typebox.js",
"dist/typebox.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/catchfashion/typebox"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "hammer task clean",
"build": "hammer task build",
"example": "hammer task example",
"test": "hammer task spec",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@sinclair/hammer": "^0.12.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"ajv": "^8.1.0",
"ajv-formats": "^2.0.2",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"semantic-release": "^17.2.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}