-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.2 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
{
"name": "tln-cli",
"version": "1.106.0",
"description": "Advanced Component Management System",
"main": "cli.js",
"scripts": {
"test": "nyc --reporter=text --reporter=lcov mocha **/*spec.js",
"update": "node update.js"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
]
},
"bin": {
"tln": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/project-talan/tln-cli.git"
},
"author": "Vladyslav Kurmaz",
"license": "gpl-3.0",
"bugs": {
"url": "https://github.com/project-talan/tln-cli/issues"
},
"homepage": "https://github.com/project-talan/tln-cli#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"compare-versions": "^6.1.0",
"dotenv": "^8.6.0",
"empty-dir": "^2.0.0",
"find-up": "^4.1.0",
"getos": "^3.2.1",
"is-docker": "^2.2.1",
"is-wsl": "^2.2.0",
"log4js": "^6.3.0",
"node-fetch": "^2.6.7",
"tmp": "^0.2.1",
"yaml": "^1.10.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"chai": "^4.3.4",
"json-fn": "^1.1.1",
"mocha": "^9.2.2",
"mock-fs": "^4.14.0",
"nyc": "^15.1.0",
"sinon": "^9.2.4"
}
}