-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "swears",
"version": "0.1.10",
"description": "Gives an array of swear words, and a helper function to remove them. Taken from Google's big ol' list (includes Typescript types)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"convert": "ts-node src/convertFromTxt.ts",
"compile": "tsc",
"prepublishOnly": "npm run convert && npm run compile && npm run test:no-watch && npm run compile",
"test": "jest --watch",
"test:no-watch": "jest"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/swears.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thathurtabit/swear-words.git"
},
"keywords": [
"swear",
"words",
"typescript",
"list",
"profanity",
"filter"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thathurtabit/swear-words/issues"
},
"homepage": "https://github.com/thathurtabit/swear-words#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.5",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}