-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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
46
47
48
49
50
{
"name": "@shopping24/rake-js",
"version": "2.2.0",
"description": "Use rake to extract important keywords from large texts.",
"main": "dist/extract.js",
"scripts": {
"test": "npm run eslint && jest --config jest.config.js",
"test:jest": "jest --verbose --config jest.config.js",
"eslint": "eslint src --ext .js",
"build": "npm run build:stoplist && node ./node_modules/.bin/rollup -c rollup.config.js",
"build:stoplist": "node scripts/transform_txt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shopping24/rake-js.git"
},
"keywords": [
"rake",
"keyword",
"extraction",
"search",
"Rapid Automatic Keyword Extraction"
],
"author": {
"name": "Publisher Development Developers, shopping24",
"email": "cooperations@s24.com",
"url": "https://www.s24.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shopping24/rake-js/issues"
},
"homepage": "https://github.com/shopping24/rake-js#readme",
"devDependencies": {
"eslint": "~4.19.1",
"eslint-config-airbnb": "~16.1.0",
"eslint-plugin-import": "~2.17.2",
"eslint-plugin-jsx-a11y": "~6.1.1",
"eslint-plugin-react": "~7.16.0",
"jest": "~24.9.0",
"path": "~0.12.7",
"rollup": "^1.31.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"xregexp": "~4.2.4",
"src": "^1.1.2"
}
}