-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 889 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 889 Bytes
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
{
"name": "ununknown",
"version": "0.4.6",
"description": "Typesafe combinatorial data validators for typescript.",
"repository": "https://github.com/tkaden4/ununknown",
"author": "Kaden Thomas <thomas.kaden4@outlook.com>",
"license": "MIT",
"types": "build/index.d.ts",
"main": "build/index.js",
"scripts": {
"test": "tsc -p test.tsconfig.json && jest",
"doc": "typedoc --theme default --media media && touch docs/.nojekyll ",
"format": "prettier src/**/*.ts --write",
"prepare": "tsc",
"prepublishOnly": "npm test && npm run format && npm run doc"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"fp-ts": "^2.2.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typedoc": "^0.15.3",
"typescript": "^3.7.3"
}
}