forked from colinskow/sofa-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "@sl-nx/sofa-model",
"version": "1.0.3",
"description": "A simple model class to sanitize and validate your javascript data.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sl-nx/sofa-model.git"
},
"scripts": {
"test": "gulp",
"lint": "node ./node_modules/prettier/bin-prettier.js --write . && node ./node_modules/eslint/bin/eslint.js --fix ."
},
"keywords": [
"model",
"validation",
"sanitization"
],
"author": "Colin Skow",
"maintainers": [
"Fynn Leitow"
],
"license": "MIT",
"dependencies": {
"deepmerge": "^4.2.2",
"validate.js": "^0.13.1",
"validator": "^13.7.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^7.0.2",
"mocha": "^7.1.2",
"prettier": "^2.4.1"
},
"bugs": {
"url": "https://github.com/sl-nx/sofa-model/issues"
},
"homepage": "https://github.com/sl-nx/sofa-model#readme",
"directories": {
"test": "test"
}
}