-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "livebundle",
"version": "1.0.0",
"main": "dist/index.js",
"private": true,
"license": "Apache-2.0",
"scripts": {
"clean": "lerna run clean",
"compile": "lerna run compile",
"coverage": "nyc yarn test",
"coverage:clean": "rimraf .nyc_output coverage",
"debug": "node --nolazy --inspect -r ts-node/register -r tsconfig-paths/register packages/livebundle/src/cli.ts",
"build": "lerna run build",
"lint": "eslint '*/**/*.{js,ts}'",
"test": "yarn build && lerna run test"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@sinonjs/fake-timers": "^7.0.5",
"@types/amqp-connection-manager": "^2.0.10",
"@types/amqplib": "^0.5.17",
"@types/chai": "^4.2.18",
"@types/chai-http": "^4.2.0",
"@types/commander": "^2.12.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/express-ws": "^3.0.0",
"@types/form-data": "^2.5.0",
"@types/fs-extra": "^9.0.11",
"@types/got": "^9.6.11",
"@types/inquirer": "^7.3.1",
"@types/ip": "^1.1.0",
"@types/js-yaml": "^4.0.1",
"@types/lodash": "^4.14.169",
"@types/micromatch": "^4.0.1",
"@types/mocha": "^8.2.2",
"@types/multer": "^1.4.5",
"@types/nock": "^11.1.0",
"@types/node": "^15.3.0",
"@types/node-emoji": "^1.8.1",
"@types/node-ipc": "^9.1.3",
"@types/ora": "^3.2.0",
"@types/qrcode": "^1.4.0",
"@types/shelljs": "^0.8.8",
"@types/sinon": "^10.0.0",
"@types/source-map": "^0.5.7",
"@types/tmp": "^0.2.0",
"@types/uuid": "^8.3.0",
"@types/yauzl": "^2.9.1",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"lerna": "^4.0.0",
"mocha": "^8.4.0",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"workspaces": [
"packages/*"
]
}