-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 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
{
"name": "rake-js",
"version": "0.1.1",
"description": "A pure JS implementation of the Rapid Automated Keyword Extraction (RAKE) algorithm.",
"main": "dist/lib/index.js",
"scripts": {
"build": "rm -rf dist && npm run pretty && tsc -p .",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"pretty": "prettier --single-quote --no-semi --trailing-comma es5 --write 'src/**/*.ts'",
"test": "npm run lint && npm run build && mocha --opts .mocha",
"watch": "mocha-typescript-watch --opts .mocha",
"prepublish": "npm run test"
},
"keywords": [
"RAKE",
"keyword",
"keywords",
"extraction",
"keyword",
"extraction",
"tag",
"tags",
"auto-tagging"
],
"author": "Maximilian Stroh (github/Anonyfox)",
"license": "LGPL-3.0",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.21",
"chai": "^3.5.0",
"mocha": "^3.4.1",
"mocha-typescript": "^1.1.2",
"prettier": "^1.5.2",
"source-map-support": "^0.4.15",
"tslint": "^5.4.3",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.3.2"
},
"dependencies": {
"condense-whitespace": "^1.0.0",
"franc": "^3.1.0",
"lodash": "^4.17.4",
"snowball": "^0.3.1"
}
}