forked from stefanwalther/sense-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 3.97 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "sense-go",
"version": "0.14.17",
"description": "Validate, package and deploy your Qlik Sense Visualization Extension projects with ease.",
"keywords": [
"deployment",
"extensions",
"grunt",
"gulp",
"less",
"mashups",
"packaging",
"qlik",
"qlik-sense",
"qlik-sense-desktop",
"qrs",
"ssh",
"validation",
"visualization-extensions",
"wbfolder.wbl",
"web-projects",
"zip"
],
"homepage": "https://github.com/stefanwalther/sense-go",
"bugs": {
"url": "https://github.com/stefanwalther/sense-go/issues"
},
"license": "MIT",
"author": "Stefan Walther (https://github.com/stefanwalther)",
"main": "./lib/index.js",
"bin": {
"sense-go": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/stefanwalther/sense-go.git"
},
"scripts": {
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"lint": "eslint lib && eslint test",
"lint:fix": "npm run lint:src:fix && npm run lint:test:fix",
"lint:src": "eslint lib",
"lint:src:fix": "eslint lib --fix",
"lint:test": "eslint test",
"lint:test:fix": "eslint test --fix",
"test": "mocha --require ./test/mocha.conf.js test/*.spec.js",
"test:integration": "nyc mocha --require ./test/mocha.conf.js test/**/*.spec.js",
"test:integration:coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"test-coverage": "istanbul cover node_modules/.bin/_mocha --require ./test/mocha.conf.js -- -- -u exports -R spec test/**/* && codecov",
"changelog": "docker run --rm -v ${PWD}:/app stefanwalther/github-changelog-generator stefanwalther/sense-go -t ${GITHUB_CHANGELOG_GENERATOR_TOKEN} -u stefanwalther --since-tag v0.14.7 --base docs/archive/old-changelog.yml"
},
"dependencies": {
"ansi-colors": "^2.0.5",
"archy": "^1.0.0",
"async": "^2.6.0",
"deep-extend": "^0.6.0",
"del": "^3.0.0",
"expand-tilde": "^2.0.2",
"extend-shallow": "^3.0.2",
"fancy-log": "^1.3.2",
"fs-extra": "^7.0.0",
"glob": "^7.1.2",
"graceful-fs": "^4.1.11",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^7.0.1",
"gulp-bump": "^3.0.0",
"gulp-clean-css": "^3.9.2",
"gulp-concat": "^2.6.1",
"gulp-debug": "^4.0.0",
"gulp-filter": "^5.1.0",
"gulp-git": "^2.5.1",
"gulp-header": "^2.0.1",
"gulp-htmlmin": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-jsonlint": "^1.2.1",
"gulp-jsonminify": "^1.1.0",
"gulp-less": "^4.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-nop": "0.0.3",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-replace-task": "^0.11.0",
"gulp-simple-task-loader": "^1.3.11",
"gulp-sourcemaps": "^2.6.4",
"gulp-ssh": "^0.7.0",
"gulp-strip-debug": "^3.0.0",
"gulp-tag-version": "^1.3.1",
"gulp-touch": "^1.0.1",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^5.0.0",
"gulp-zip": "^4.1.0",
"js-yaml": "^3.10.0",
"liftoff": "^2.5.0",
"lodash": "^4.17.5",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"plugin-error": "^1.0.1",
"sanitize-filename": "^1.6.1",
"sense-loc": "^0.4.0",
"spawn-cmd": "0.0.2",
"tildify": "^1.2.0",
"time-stamp": "^2.0.0",
"uglify-es": "^3.3.9",
"v8flags": "^3.0.1"
},
"devDependencies": {
"assertion-error": "1.1.0",
"chai": "4.1.2",
"chai-files": "1.4.0",
"codacy-coverage": "3.0.0",
"codecov": "3.0.4",
"eslint": "5.3.0",
"eslint-config-space-single": "0.3.5",
"istanbul": "0.4.5",
"mocha": "*",
"mocha-lcov-reporter": "1.3.0",
"nyc": "12.0.2"
},
"engines": {
"node": ">=8"
},
"preferGlobal": true,
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 2,
"footer": " "
},
"layout": "empty",
"tasks": [
"readme"
],
"data": {
"twitter": "waltherstefan",
"travis_url": "stefanwalther"
}
}
}