-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "crispyctl",
"version": "0.0.4",
"description": "CLI tool to communicate with crispy-api",
"main": "dist/crispyctl.js",
"bin": {
"crispyctl": "dist/crispyctl.js"
},
"repository": "git@github.com:WiseEngineering/crispy-cli.git",
"author": "WiseEngineering open-source@wise-engineering.com",
"license": "MIT",
"private": false,
"scripts": {
"develop": "nodemon --watch 'src/**/*.ts' --ext 'ts' --exec 'yarn build'",
"build": "tsc -p .",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" yarn test",
"lint": "eslint --ext .ts src tests",
"clean": "rm -rf ./node_modules ./dist && yarn install"
},
"dependencies": {
"chalk": "3.0.0",
"commander": "4.0.1",
"js-yaml": "3.13.1",
"mysql": "2.17.1"
},
"devDependencies": {
"@types/chai": "4.2.7",
"@types/js-yaml": "3.12.1",
"@types/mocha": "5.2.7",
"@types/mysql": "2.15.8",
"@types/node": "12.12.14",
"@typescript-eslint/eslint-plugin": "2.10.0",
"@typescript-eslint/parser": "2.10.0",
"chai": "4.2.0",
"eslint": "6.7.2",
"mocha": "6.2.2",
"nodemon": "2.0.1",
"nyc": "14.1.1",
"ts-node": "8.5.4",
"typescript": "3.7.3"
}
}