-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "wingbot-cli",
"version": "4.2.0",
"description": "Wingbot.ai CLI tool",
"main": "main.js",
"bin": {
"wingbot": "./bin/wingbot.js"
},
"scripts": {
"sql:start": "(docker rm sqlwingbottest || true) && docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=NeotravujPotvoro1' -p 1433:1433 --name sqlwingbottest -d mcr.microsoft.com/mssql/server:2017-latest && sleep 12 && docker exec -it sqlwingbottest /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P 'NeotravujPotvoro1' -Q 'CREATE DATABASE clitest'",
"sql:stop": "docker kill sqlwingbottest && docker rm sqlwingbottest",
"doc": "node ./bin/makeApiDoc.js",
"test": "npm run test:lint && npm run test:unit",
"test:coverage": "nyc --reporter=html mocha ./test && nyc report",
"test:coverage:threshold": "nyc check-coverage --lines 80 --functions 80 --branches 74",
"test:unit": "mocha ./test",
"test:lint": "eslint --ext .js bin src test *.js --fix",
"build": "node ./bin/build.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:wingbotai/wingbot-cli.git"
},
"keywords": [
"FastText",
"ML",
"AI",
"Machine",
"Learning"
],
"author": "David Menger",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"cli-spinner": "^0.2.10",
"commander": "^9.4.1",
"density-clustering": "^1.3.0",
"event-stream": "^4.0.1",
"glob": "^8.0.3",
"handlebars": "^4.7.7",
"inquirer": "^8.2.5",
"JSONStream": "^1.3.5",
"latest-version": "^5.1.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"webalize": "^0.1.0",
"xml-nodes": "^0.1.5",
"xml-objects": "^1.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
},
"optionalDependencies": {
"fast-text": "^1.0.1"
}
}