-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1006 Bytes
/
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
47
48
49
50
51
{
"name": "nextql-validate",
"version": "0.0.0",
"description": "Validate plugin for nextql",
"homepage": "https://github.com/giapnguyen74/nextql-validate",
"author": {
"name": "Giap Nguyen Huu",
"email": "[email protected]",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"nextql",
"validate",
"validator"
],
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"eslint": "^4.1.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^19.0.2",
"jest-cli": "^20.0.0",
"nsp": "^2.6.3",
"regenerator-runtime": "^0.10.5"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "[email protected]:giapnguyen74/nextql-validate.git",
"jest": {
"testEnvironment": "node"
},
"license": "MIT",
"dependencies": {
"fastest-validator": "^0.5.0",
"nextql": "0.0.2"
}
}