-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.79 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
{
"name": "cloudlatex-cli-plugin",
"version": "3.3.0",
"license": "MIT",
"main": "./dist/src/index.js",
"bin": {
"latexcli": "./dist/src/cli.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint src test --ext ts",
"watch": "tsc -watch -p ./",
"test": "nyc mocha -r ts-node/register \"test/**/*.ts\"",
"unit": "nyc mocha -r ts-node/register \"test/unit/*.ts\"",
"integ": "nyc mocha -r ts-node/register \"test/integ/*.ts\"",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudlatex-team/cloudlatex-cli-plugin.git"
},
"homepage": "https://github.com/cloudlatex-team/cloudlatex-cli-plugin",
"keywords": [
"db",
"typescript"
],
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.0.4",
"@types/node-fetch": "^2.5.5",
"@types/pako": "^1.0.1",
"@types/sinon": "^9.0.4",
"@types/text-encoding": "^0.0.35",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"mocha": "^9.2.0",
"mock-fs": "^4.12.0",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"@moritanian/type-db": "^0.2.0",
"anymatch": "^3.1.3",
"chokidar": "^3.3.1",
"eventemitter3": "^4.0.0",
"form-data": "^3.0.4",
"node-fetch": "^2.6.7",
"pako": "^1.0.11",
"text-encoding": "^0.7.0",
"uuid": "^8.1.0"
}
}