-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.69 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
{
"name": "kart",
"version": "0.10.0",
"description": "Kano Archive and Release Tool. Managing releases mainly of static websites.",
"main": "lib/index.js",
"bin": {
"kart": "bin/kart"
},
"scripts": {
"checkstyle": "eslint ./lib ./test ./bin/kart",
"checkstyle-ci": "eslint ./lib ./test ./bin/kart -f checkstyle -o eslint.xml",
"test": "mocha test/",
"test-ci": "mocha --reporter mocha-junit-reporter test/",
"coverage": "istanbul cover _mocha test/ -t30000 -- -R spec",
"docs": "typedoc --allowJs --ignoreCompilerErrors --module commonjs --out ./docs ./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KanoComputing/kart.git"
},
"author": "Radek Pazdera <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KanoComputing/kart/issues"
},
"homepage": "https://github.com/KanoComputing/kart#readme",
"dependencies": {
"archiver": "^2.1.1",
"async": "^2.6.0",
"aws-sdk": "^2.111.0",
"colors": "^1.1.2",
"git-rev-sync": "^1.9.1",
"gunzip-maybe": "^1.4.1",
"inquirer": "^3.2.3",
"mime-types": "^2.1.17",
"semver": "^5.4.1",
"tar-fs": "^1.16.0",
"tar-stream": "^1.5.5",
"update-notifier": "^2.3.0",
"yargs": "^8.0.2",
"zip-stream": "^1.2.0"
},
"devDependencies": {
"@kano/eslint-config": "^1.0.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.14.0",
"inquirer-test": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"mocha-junit-reporter": "^1.18.0",
"mock-aws-s3": "^2.6.0",
"should": "^13.2.0",
"strip-ansi": "^4.0.0",
"tmp": "0.0.33",
"tsdoc": "^0.0.4"
},
"engines": {
"node": ">=6.x"
}
}