-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 886 Bytes
/
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
{
"name": "greek-stemmer",
"version": "0.1.4",
"description": "A simple greek stemmer",
"homepage": "https://github.com/Apmats/greekstemmerjs",
"author": {
"name": "apmats",
"email": "amatsagkas@gmail.com",
"url": ""
},
"files": [
"lib",
"config"
],
"main": "lib/index.js",
"keywords": [
"greek",
"stemmer"
],
"repository": "https://github.com/Apmats/greekstemmerjs",
"devDependencies": {
"gulp": "^3.6.0",
"gulp-eslint": "^1.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.9.0",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^1.0.0",
"gulp-nsp": "^2.1.0"
},
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp test",
"benchmark": "gulp benchmark"
},
"license": "MIT",
"dependencies": {
"lodash": "^3.10.1",
"path": "^0.12.7",
"yamljs": "^0.2.4"
}
}