-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "is-gibberish",
"version": "0.0.1",
"description": "Tells you if a string is nonsense",
"main": "index.js",
"scripts": {
"test": "jest spec.js --config=jest.config.js",
"example": "node examples/find-bad-filenames.js"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hilja/is-gibberish.git"
},
"keywords": [
"language",
"processing"
],
"author": "Antti Hilja",
"license": "ISC",
"bugs": {
"url": "https://github.com/hilja/is-gibberish/issues"
},
"homepage": "https://github.com/hilja/is-gibberish#readme",
"dependencies": {
"average": "^0.1.0",
"languagedetect": "^1.2.0"
},
"devDependencies": {
"clean-slate-lint": "^1.0.9",
"jest": "^24.8.0"
},
"eslintConfig": {
"env": {
"node": true,
"jest": true
}
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/clean-slate-lint",
"pre-rewrite": "./node_modules/.bin/clean-slate-lint"
}
}
}