-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "tdm-teeft",
"version": "2.1.2",
"description": "Teeft tdm module",
"main": "index.js",
"scripts": {
"test": "mocha -t 120000",
"docs": "rm -rf docs/html/; cat docs/markdown/head.md > README.md; jsdoc2md --files index.js src/* >> README.md; jsdoc -c .jsdoc.conf.json",
"prettier": "prettier --write src/*.js index.js test/run.js test/dataset/in/wrapper.js --config .prettierrc.json --require-pragma"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier; npm run test",
"pre-push": "npm run test"
}
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/NicolasKieffer/tdm-teeft.git"
},
"author": "NicolasKieffer",
"license": "OpenBSD",
"dependencies": {
"async": "^2.6.2",
"auto-tu": "^2.0.1",
"javascript-lemmatizer": "0.0.2",
"lodash": "^4.17.4",
"mocha": "^6.1.4",
"snowball-stemmers": "^0.6.0",
"tdm-utils": "^2.0.0"
},
"devDependencies": {
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.0",
"husky": "^3.0.0"
}
}