-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 989 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": "spam-check",
"description": "Module for checking for spam words",
"version": "1.0.1",
"license": "MIT",
"main": "app.js",
"author": {
"name": "Josh Shemas",
"email": "[email protected]",
"url": "https://github.com/jshemas"
},
"scripts": {
"eslint:fix": "eslint . --ext .js --fix",
"eslint": "eslint . --ext .js",
"test": "mocha ./tests/index.spec.js"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-promise": "^6.1.1",
"expect.js": "^0.3.1",
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "http://github.com/jshemas/spamService.git",
"web": "http://github.com/jshemas/spamService"
},
"keywords": [
"spam check",
"spamcheck",
"spam",
"profanity",
"spammer"
]
}