-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 954 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 954 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
31
32
33
34
35
36
37
{
"name": "@bcdbuddy/validator",
"version": "0.10.3",
"main": "index.js",
"module": "src/Validator.ts",
"sideEffects": false,
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "jest -i",
"test:coverage": "jest --coverage",
"lint": "standard --parser typescript-eslint-parser --plugin typescript ./src/*.ts"
},
"types": "./typings",
"typings": "./typings",
"keywords": [
"form",
"validation",
"data"
],
"description": "Be eloquent and validate your form data with style.",
"repository": "git@github.com:bcdbuddy/validator.git",
"author": "Babacar Cissé DIA <bcdbuddy@outlook.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"faker": "^4.1.0",
"jest": "^25.2.7",
"moment": "^2.26.0",
"nodemon": "^2.0.2",
"ts-jest": "^25.3.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}