-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "phpmorphy",
"version": "2.3.2",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"babel": "babel src --out-dir dist --copy-files --source-maps",
"babel:watch": "run-s \"babel -- --watch --verbose\"",
"watch": "run-s clean babel:watch",
"build": "run-s clean babel",
"test": "node -r source-map-support/register ./dist/test",
"lint": "eslint . --ext .js,.mjs,.ts",
"lint:fix": "eslint . --ext .js,.mjs,.ts --fix && prettier \"**/*.{json,md}\" --write",
"install": "in-install && npm run build || not-in-install",
"prepublish": "in-publish && npm run test || not-in-publish"
},
"main": "./index.js",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/runtime-corejs3": "^7.8.7",
"babel-plugin-module-resolver": "^4.0.0",
"core-js": "^3.6.4",
"encoding": "^0.1.12",
"in-publish": "^2.0.0",
"locutus": "^2.0.11",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"phpunserialize": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-module-resolver": "^0.16.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-optimize-regex": "^1.1.7",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^17.2.0",
"prettier": "^1.19.1",
"source-map-support": "^0.5.16"
},
"keywords": [
"phpmorphy",
"php-morphy",
"morphy",
"morphology",
"lemma",
"lemmatize",
"grammar"
],
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antixrist/node-phpmorphy"
},
"homepage": "https://github.com/antixrist/node-phpmorphy",
"author": {
"name": "antixrist"
},
"description": "Original package is located at http://phpmorphy.sourceforge.net/"
}