-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
48
49
{
"name": "ekler.js",
"version": "1.0.0",
"description": "A simple library to manage Turkish suffixes",
"main": "isim.js",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"test:watch": "jest --watch",
"precommit": "npm run lint && npm test"
},
"jest": {
"collectCoverageFrom": [
"*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/YTolun/ekler.js.git"
},
"keywords": [
"turkish",
"suffixes",
"nlp"
],
"author": "Yüksel Tolun",
"license": "MIT",
"bugs": {
"url": "https://github.com/YTolun/ekler.js/issues"
},
"homepage": "https://github.com/YTolun/ekler.js#readme",
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-google": "^0.12.0",
"husky": "^1.3.1",
"jest": "^24.5.0"
}
}