-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 976 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 976 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
{
"name": "@aliencreations/node-validator",
"version": "1.0.6",
"description": "Validator for Alien Creations node apps.",
"main": "index.js",
"dependencies": {
"@aliencreations/node-error": "*",
"jcvd": "^1.1.0",
"prettycats": "^0.7.9"
},
"devDependencies": {
"@aliencreations/eslint-config": "^1.x.x",
"eslint": "^7.0.0",
"jasmine": "^3.4.0",
"jasmine-console-reporter": "^3.1.0",
"nyc": "^14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aliencreations/node-validator.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Sean Cannon",
"bugs": {
"url": "https://github.com/aliencreations/node-validator/issues"
},
"homepage": "https://github.com/aliencreations/node-validator",
"scripts": {
"lint": "eslint .",
"test": "./node_modules/.bin/nyc --reporter=lcov --reporter=text-summary --exclude=spec ./node_modules/.bin/jasmine"
}
}