-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
82 lines (82 loc) · 2.32 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
{
"name": "@folio/stripes-cli",
"version": "2.6.2",
"description": "Stripes Command Line Interface",
"repository": "https://github.com/folio-org/stripes-cli",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"license": "Apache-2.0",
"engines": {
"node": ">=14.0.0"
},
"main": "index.js",
"bin": {
"stripes": "./lib/stripes-cli.js"
},
"scripts": {
"test": "mocha --recursive",
"test:coverage": "nyc --reporter=lcov --reporter=text --report-dir ./artifacts/coverage mocha --recursive",
"lint": "eslint ./",
"lint-templates": "eslint ./resources --no-ignore",
"docs": "node ./lib/doc/generator"
},
"dependencies": {
"@folio/stripes-testing": "^3.0.0",
"@folio/stripes-webpack": "^4.1.0",
"@octokit/rest": "^18.6.0",
"babel-plugin-istanbul": "^6.0.0",
"configstore": "^3.1.1",
"debug": "^4.0.1",
"express": "^4.17.1",
"fast-xml-parser": "^3.12.10",
"find-up": "^2.1.0",
"fs-extra": "^8.1.0",
"get-stdin": "^6.0.0",
"global-dirs": "^0.1.1",
"import-lazy": "^3.1.0",
"inquirer": "^8.2.0",
"is-installed-globally": "^0.4.0",
"is-path-inside": "^1.0.1",
"istanbul-reports": "^3.1.4",
"just-kebab-case": "^1.0.0",
"just-pascal-case": "^1.0.0",
"karma": "^6.3.3",
"karma-browserstack-launcher": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"kopy": "^9.4.2",
"lodash": "^4.17.5",
"mocha": "^9.0.0",
"mocha-jenkins-reporter": "^0.4.1",
"morgan": "^1.10.0",
"node-fetch-npm": "^2.0.2",
"nyc": "^15.1.0",
"resolve-from": "^4.0.0",
"resolve-pkg": "^1.0.0",
"rimraf": "^2.6.2",
"semver": "^5.6.0",
"simple-git": "^3.5.0",
"supports-color": "^4.5.0",
"update-notifier": "^5.1.0",
"webpack": "~5.68.0",
"webpack-bundle-analyzer": "^4.4.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"@folio/eslint-config-stripes": "^6.0.0",
"chai": "^4.1.2",
"colors": "1.4.0",
"eslint": "^7.32.0",
"sinon": "^4.1.4",
"sinon-chai": "^2.14.0"
},
"resolutions": {
"isbinaryfile": "4.0.8"
}
}