forked from seiyria/censor-sensor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1001 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": "censor-sensor",
"version": "1.0.3",
"description": "a better profanity filter",
"main": "./dist/index.js",
"typings": "./dist/src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "webpack --config webpack.config.js",
"test": "ava-ts src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seiyria/censor-sensor.git"
},
"keywords": [
"profanity",
"filter",
"censor"
],
"author": "Kyle Kemp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seiyria/censor-sensor/issues"
},
"homepage": "https://github.com/seiyria/censor-sensor#readme",
"devDependencies": {
"@types/node": "^9.4.6",
"ava-ts": "^0.24.2",
"awesome-typescript-loader": "^3.4.1",
"ts-node": "^4.1.0",
"typescript": "^2.7.2",
"webpack": "^3.11.0"
},
"dependencies": {
"lodash.includes": "^4.3.0",
"lodash.merge": "^4.6.1",
"lodash.some": "^4.6.0"
}
}