-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 939 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
{
"name": "nextql-limit",
"version": "0.0.1",
"description": "NextQL plugin for protect against excessive calls",
"homepage": "https://github.com/giapnguyen74/nextql-limit",
"author": {
"name": "Giap Nguyen Huu",
"email": "giapnguyen74@gmail.com",
"url": ""
},
"files": ["lib"],
"main": "lib/index.js",
"keywords": ["nextql", "nextql-plugin"],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.1.0",
"eslint-config-xo-space": "^0.16.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"nsp": "^2.6.3"
},
"scripts": {
"prepublish": "nsp check && npm run compile",
"pretest": "eslint . --fix",
"compile": "babel -d lib/ src/",
"test": "jest"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "git@github.com:giapnguyen74/nextql-limit.git",
"jest": {
"testEnvironment": "node"
},
"license": "MIT"
}