-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "@datagrok/nlp",
"fullName": "NLP",
"version": "1.1.0",
"author": {
"name": "Alexander Paramonov",
"email": "[email protected]"
},
"description": "Natural Language Processing Package",
"repository": {
"type": "git",
"url": "https://github.com/datagrok-ai/public.git",
"directory": "packages/NLP"
},
"dependencies": {
"@datagrok-libraries/utils": "^4.3.0",
"aws-sdk": "^2.762.0",
"datagrok-api": "^1.21.1",
"stemmer": "^2.0.1",
"umap-js": "^1.3.3",
"util": "^0.12.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"css-loader": "^5.0.0",
"eslint": "^8.21.0",
"eslint-config-google": "^0.14.0",
"rxjs": "^6.5.5",
"style-loader": "^2.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"debug-nlp": "grok publish",
"release-nlp": "grok publish --release",
"build-nlp": "webpack",
"build": "webpack",
"test": "grok test",
"debug-nlp-public": "grok publish public",
"release-nlp-public": "grok publish public --release",
"debug-nlp-local": "grok publish local",
"release-nlp-local": "grok publish local --release",
"debug-nlp-localhost": "webpack && grok publish localhost",
"release-nlp-localhost": "webpack && grok publish localhost --release"
},
"canEdit": [
"Developers"
],
"canView": [
"All users"
],
"category": "Machine Learning"
}