This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
{
"name": "@additive/colt",
"version": "2.0.4",
"description": "ADDITIVE Command Line Tool (CoLT) to make development in-house easier!",
"homepage": "https://www.additive-net.de/",
"bugs": "https://github.com/additive/colt/issues",
"repository": "https://github.com/additive/colt",
"license": "See license in LICENSE",
"keywords": [
"colt",
"additive",
"cli"
],
"author": {
"name": "ADDITIVE Soft- und Hardware für Technik und Wissenschaft GmbH",
"email": "[email protected]",
"url": "https://www.additive-net.de/"
},
"contributors": [
{
"name": "Marvin Heilemann",
"email": "[email protected]"
}
],
"bin": {
"colt": "./bin/colt.js"
},
"scripts": {
"test:packager": "cross-var node ${npm_package_bin_colt} packager",
"test:uploader": "cross-var node ${npm_package_bin_colt} uploader",
"test:gulp": "cross-var node ${npm_package_bin_colt} gulp",
"jest": "jest",
"test": "run-s jest",
"pretty": "pretty-quick"
},
"engines": {
"node": ">=10.14.1",
"npm": ">=6.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty"
}
},
"dependencies": {
"archiver": "^2.1.1",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"cosmiconfig": "^5.0.7",
"downloads-folder": "^1.0.1",
"lodash": "^4.17.11",
"rimraf": "^2.6.3",
"rsync": "^0.6.1",
"uniqid": "^5.0.3"
},
"devDependencies": {
"cross-var": "^1.1.0",
"eslint": "^5.16.0",
"eslint-config-esnext": "^4.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
}
}