-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.35 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fuhk",
"version": "1.2.1",
"description": "returns all \"bad words\" found in a javascript string",
"license": "MIT",
"homepage": "https://github.com/dawsonbotsford/fuhk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dawsonbotsford/fuhk.git"
},
"author": {
"name": "Dawson Botsford",
"email": "DawsonBotsford@gmail.com",
"url": "dawsonbotsford.com"
},
"bugs": {
"url": "https://github.com/dawsonbotsford/fuhk/issues"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "xo && ava",
"bundle": "webpack --config webpack.conf.js",
"precommit": "npm test && npm run bundle"
},
"files": [
"index.js",
"swearWords.json",
"bundle.js"
],
"keywords": [
"bad",
"bad word",
"swear",
"filter",
"kid friendly",
"family",
"good",
"lean",
"minimal",
"documented",
"tested",
"licensed",
"ava",
"dawson"
],
"dependencies": {
},
"devDependencies": {
"ava": "^0.11.0",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"eslint-config-xo-space": "^0.8.0",
"husky": "^0.11.4",
"json-loader": "^0.5.4",
"webpack": "^1.12.14",
"xo": "^0.12.1"
},
"xo": {
"space": true,
"eslintConfig": {
"extends": "xo-space"
}
}
}