-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "@chattylabs/language-detection",
"version": "0.1.1",
"description": "Package to detect the language of a given text (focusing on short sms type text used on tweets, facebook, WhatsApp, etc)",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chattylabs/language-detector"
},
"author": {
"name" : "Daniel Antelo",
"url" : "https://github.com/danielantelo"
},
"contributors": [
{
"name" : "Daniel Antelo",
"url" : "https://github.com/danielantelo"
}
],
"dependencies": {
"striptags": "^3.1.1"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.2",
"csv-parse": "^2.5.0",
"glob": "^7.1.2",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.1",
"prettier": "1.13.7",
"pretty-quick": "^1.6.0",
"sync-request": "^6.0.0"
},
"scripts": {
"test": "jest --env=node --colors",
"train": "node bin/train.js",
"prettier": "prettier --write **/*.js **/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run test"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"jest": {
"verbose": true
}
}