-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1003 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
{
"name": "fun-ov",
"version": "1.0.0",
"description": "Flexible and extensible functional object validation",
"homepage": "https://github.com/pujitm/fun-ov",
"repository": {"type": "git", "url": "https://github.com/pujitm/fun-ov.git"},
"main": "js/index.js",
"types": "js/index.d.ts",
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
"scripts": {
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"prepack": "npx tsc --build tsconfig.json && rm -r js/test && mv js/lib/* ./js/ && rmdir js/lib"
},
"keywords": [
"functional",
"object",
"validation",
"fun",
"composable"
],
"author": "Pujit Mehrotra",
"license": "MIT",
"files": [
"js"
],
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.8.2"
}
}