forked from antixrist/node-phpmorphy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
55
{
"name": "phpmorphy-locutus",
"version": "0.1.0",
"scripts": {
"rebuilder": "cross-env NODE_ENV=development webpack --watch",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development nodemon",
"test": "node ./build/test"
},
"main": "./build/index.js",
"dependencies": {
"babel-polyfill": "^6.20.0",
"encoding": "^0.1.12",
"locutus": "^2.0.11",
"lodash": "^4.17.4",
"phpmorphy-locutus": "^0.1.0",
"phpunserialize": "^1.0.1",
"source-map-support": "^0.4.8"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-plugin-closure-elimination": "^1.1.14",
"babel-preset-env": "^1.1.8",
"circular-dependency-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.4",
"glob": "^7.1.1",
"nodemon": "^1.11.0",
"source-map-loader": "^0.1.6",
"webpack": "2.2.0-rc.3"
},
"keywords": [
"phpmorphy",
"php-morphy",
"morphy",
"morphology",
"lemma",
"locutus",
"lemmatize",
"grammar"
],
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/noduslabs/node-phpmorphy"
},
"homepage": "https://github.com/noduslabs/node-phpmorphy",
"description": "The original package is located at https://github.com/antixrist/node-phpmorphy however it used the phpjs module, which contained dependencies with critical vulnerabilities and is not maintained anymore. This package was swapped for the newer lucutus package and all the references to phpjs have been changed to the new ones. "
}