-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1 KB
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": "tinyvalid",
"version": "1.1.4",
"description": "A simple validation library written in Typescript",
"files": [
"dist/**/*"
],
"main": "dist/tinyvalid.js",
"types": "dist/tinyvalid.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnts-i/tinyvalid.git"
},
"keywords": [
"validation",
"validate",
"valid",
"typescript",
"javascript"
],
"author": "Mantios Ioakeim",
"license": "ISC",
"bugs": {
"url": "https://github.com/mnts-i/tinyvalid/issues"
},
"homepage": "https://github.com/mnts-i/tinyvalid#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.16.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}