-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "fefe",
"version": "3.2.0",
"description": "Validate, sanitize and transform values with proper types.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build",
"test": "mocha",
"test-cover": "nyc npm test",
"test-cover-submit": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paperhive/fefe.git"
},
"keywords": [
"validate",
"sanitize",
"transform",
"parse",
"validation",
"sanitization",
"transformation",
"whitelist",
"whitelisting",
"parsing",
"types",
"typings",
"typescript"
],
"author": "André Gaul <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paperhive/fefe/issues"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^9.0.0",
"@types/ramda": "^0.27.20",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"ts-node": "^10.2.1",
"typescript": "^4.0.3"
},
"mocha": {
"require": "ts-node/register",
"spec": "src/**/*.test.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"dependencies": {
"fp-ts": "^2.9.5"
}
}