-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "jbj-nlp",
"version": "1.1.0",
"description": "Natural text processing for JBJ",
"main": "lib/index.js",
"scripts": {
"test": "babel-istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"prepublish": "npm run build",
"pretest": "npm run lint",
"lint": "eslint src",
"build": "babel src --out-dir lib --source-maps inline",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/Inist-CNRS/node-jbj-nlp.git"
},
"keywords": [
"jbj",
"filters"
],
"author": {
"name": "Nicolas Thouvenin",
"email": "nthouvenin@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Inist-CNRS/node-jbj-nlp/issues"
},
"homepage": "https://github.com/Inist-CNRS/node-jbj-nlp",
"dependencies": {
"anglicize": "^1.0.0",
"metaphone": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-istanbul": "^0.7.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "~2.2.0",
"jbj": "^4.1.1",
"mocha": "^2.4.5"
}
}