-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "jsonous",
"version": "0.0.0-development",
"description": "Type safe JSON decoding for JavaScript",
"main": "index.js",
"types": "index.d.ts",
"author": "Ryan L. Bell <ryan.l.bell@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kofno/jsonous.git"
},
"scripts": {
"docs": "typedoc --out docs --theme minimal && touch docs/.nojekyll",
"test": "ts-node node_modules/tape/bin/tape tests/**/*.ts | tap-spec",
"build": "tsc",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/tape": "^4.13.0",
"semantic-release": "^17.3.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"ts-node": "^9.1.1",
"tslint": "^5.1.0",
"typedoc": "^0.19.2",
"typescript": "^4.1.2"
},
"dependencies": {
"maybeasy": "^2.6.0",
"resulty": "^3.0.0",
"weakset": "^1.0.0",
"date-fns": "^2.16.1"
},
"peerDependencies": {
"maybeasy": "^2.6.0",
"resulty": "^3.0.0"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80
}
}