forked from words/profanities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.96 KB
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
{
"name": "profanities",
"version": "2.2.0",
"description": "List of (possible) English profane words",
"license": "MIT",
"keywords": [
"offensive",
"profane",
"vulgar",
"word",
"list"
],
"files": [
"index.js",
"index.json"
],
"repository": {
"type": "git",
"url": "https://github.com/wooorm/profanities.git"
},
"bugs": "https://github.com/wooorm/profanities/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"dependencies": {},
"devDependencies": {
"JSONStream": "^1.1.2",
"browserify": "^13.0.0",
"eslint": "^2.0.0",
"esmangle": "^1.0.0",
"got": "^6.1.0",
"istanbul": "^0.4.0",
"join-stream": "0.0.0",
"jscs": "^3.0.0",
"jscs-jsdoc": "^2.0.0",
"map-stream": "0.0.6",
"merge-stream": "^1.0.0",
"nlcst-normalize": "^2.0.0",
"remark-cli": "^1.0.0",
"remark-comment-config": "^4.0.0",
"remark-github": "^5.0.0",
"remark-lint": "^4.0.0",
"remark-validate-links": "^4.0.0",
"sort-stream": "^1.0.1",
"split": "^1.0.0",
"stream-filter": "^1.0.0",
"tape": "^4.0.0",
"unique-stream": "^2.2.0",
"wrap-stream": "^2.0.0"
},
"scripts": {
"build-md": "remark . --quiet --frail",
"build-data": "node script/build-data.js",
"build-support": "node script/build-support.js",
"build-bundle": "browserify index.js --bare -s profanities > profanities.js",
"build-mangle": "esmangle profanities.js > profanities.min.js",
"build": "npm run build-md && npm run build-data && npm run build-support && npm run build-bundle && npm run build-mangle",
"lint-api": "eslint .",
"lint-style": "jscs --reporter inline .",
"lint": "npm run lint-api && npm run lint-style",
"test-api": "node test.js",
"test-coverage": "istanbul cover test.js",
"test": "npm run build && npm run lint && npm run test-coverage"
}
}