-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "anchor",
"version": "1.4.1",
"description": "High-level validation library for Node.js (used in Waterline)",
"homepage": "https://sailsjs.com",
"keywords": [
"validation",
"recursive-validator",
"nested",
"validator",
"strict-types",
"web-framework",
"type-coercion",
"waterline",
"validate-parameters",
"sails.js",
"sails"
],
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha -R dot test",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --ignore-pattern 'test/' && echo '✔ Your code looks good.'"
},
"repository": {
"type": "git",
"url": "git://github.com/sailsjs/anchor.git"
},
"author": "Mike McNeil",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"validator": "13.7.0"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2"
}
}