-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.23 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
53
54
55
{
"name": "@gorhom/codable",
"description": "A strict json parser inspired by Swift Codable",
"version": "1.1.1",
"private": false,
"main": "dist/index.js",
"module": "dist/codable.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/gorhom/codable.git"
},
"keywords": [
"ts-codable",
"tscodable",
"codable",
"typescript",
"javascript",
"json",
"parsing",
"encodable",
"decodable",
"encoding"
],
"author": "Mo Gorhom",
"license": "MIT",
"bugs": {
"url": "https://github.com/gorhom/codable/issues"
},
"homepage": "https://github.com/gorhom/codable",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"release": "release-it"
},
"peerDependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@release-it/conventional-changelog": "^1.1.1",
"@types/jest": "^25.2.1",
"auto-changelog": "^2.0.0",
"husky": "^4.2.5",
"release-it": "^13.5.2",
"tsdx": "^0.13.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {}
}