-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 941 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
{
"name": "filtra",
"version": "1.0.11",
"description": "validate and filter incoming data",
"main": "index.js",
"scripts": {
"test": "mocha test/specs/*.spec.js --reporter spec",
"perf": "mocha test/perfomance/*.test.js --reporter spec",
"pretest": "npm run lint",
"lint": "eslint --ext .js ./"
},
"repository": {
"type": "git",
"url": "https://github.com/grbr/filtra.git"
},
"keywords": [
"validation",
"filter",
"sanitizer",
"validate",
"tools",
"util"
],
"author": "Gregory Brilev",
"license": "MIT",
"dependencies": {
"moment": "^2.25.3"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^8.10.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^9.2.1",
"uuid": "^3.4.0"
}
}