-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 775 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 775 Bytes
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
{
"name": "sensitive-words-dfa-filter",
"version": "1.1.0",
"author": "stultuss",
"description": "The word filter via dfa.",
"homepage": "https://github.com/stultuss/sensitive-words-filter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stultuss/sensitive-words-filter.git"
},
"bugs": "https://github.com/stultuss/sensitive-words-filter/issues",
"engines": {
"node": ">=8"
},
"main": "./index.js",
"scripts": {
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.22",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}