-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-shield",
"version": "0.1.11",
"description": "Protects against common Node.js vulnerabilities in MEAN stack (MongoDB, Node.js)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "dist"
},
"files": [
"dist"
],
"scripts": {
"check": "npm-run-all --parallel test lint:fix",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"build": "npm run check && rm -rf ./dist && tsc"
},
"engines": {
"node": ">=6"
},
"author": "Leonardo Zanivan <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/panga/node-shield.git"
},
"keywords": [
"shield",
"injection",
"nosql",
"security",
"mongodb",
"express",
"middleware",
"pollution",
"owasp"
],
"bugs": {
"url": "https://github.com/panga/node-shield/issues"
},
"homepage": "https://github.com/panga/node-shield#readme",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.7",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}