-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
135 lines (135 loc) · 4.73 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
{
"name": "ember-cli-workbox",
"version": "3.3.0",
"description": "Service worker generator with precaching and some basic configurable options using workbox-build",
"keywords": [
"service-worker",
"sw",
"workbox",
"manifest",
"ember-addon"
],
"repository": {
"type": "git",
"url": "https://github.com/BBVAEngineering/ember-cli-workbox.git"
},
"license": "MIT",
"author": "BBVAEngineering",
"directories": {
"doc": "doc",
"test": "tests"
},
"bugs": {
"url": "https://github.com/BBVAEngineering/ember-cli-workbox/issues"
},
"homepage": "https://github.com/BBVAEngineering/ember-cli-workbox",
"scripts": {
"build": "ember build --environment=production",
"check-coverage": "istanbul check-coverage coverage/coverage-final.json --statements 60 --branches 60 --functions 60 --lines 60",
"clean-coverage": "rm -rf coverage",
"commit": "git-cz",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:fix": "npm-run-all --continue-on-error lint:*:fix",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache --max-warnings 0",
"lint:js:fix": "eslint . --fix",
"lint:style": "prettier --check .",
"lint:style:fix": "prettier --write .",
"merge-coverage": "cp coverage/ember/coverage-final.json coverage/ember.json && cp coverage/node/coverage-final.json coverage/node.json && nyc merge coverage coverage/coverage-final.json",
"posttest": "npm run merge-coverage && npm run report-coverage && npm run check-coverage && npm run validate-coverage",
"prepare": "husky install",
"pretest": "npm run clean-coverage",
"report-coverage": "istanbul report --include=coverage/coverage-final.json text",
"semantic-release": "semantic-release",
"start": "ember serve",
"test": "npm-run-all lint test:ember test:node",
"test:ember": "COVERAGE=true ember test",
"test:ember-compatibility": "ember try:each",
"test:node": "nyc --reporter=html --reporter=json --reporter=json-summary --reporter=lcov --report-dir coverage/node --exclude node-tests --exclude **/config/* mocha node-tests",
"test:release": "semantic-release --branches=$(git rev-parse --abbrev-ref HEAD) --dry-run",
"validate-coverage": "test \"$(cat coverage/ember/coverage-summary.json | json total.lines.total)\" -gt 0"
},
"dependencies": {
"broccoli-merge-trees": "^4.1.0",
"broccoli-plugin": "^4.0.7",
"chalk": "^4.1.0",
"debug": "^4.3.3",
"ember-cli-babel": "^7.26.11",
"ember-cli-htmlbars": "^6.0.1",
"glob": "^7.2.0",
"pretty-bytes": "^5.6.0",
"rimraf": "^3.0.1",
"workbox-build": "^6.5.4"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@ember/optional-features": "^2.0.0",
"@ember/test-helpers": "^2.6.0",
"@embroider/test-setup": "^1.0.0",
"@glimmer/component": "^1.0.4",
"@glimmer/tracking": "^1.0.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"babel-eslint": "^10.1.0",
"broccoli-test-helpers": "0.0.9",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"ember-auto-import": "^2.2.4",
"ember-cli": "~4.1.1",
"ember-cli-code-coverage": "^1.0.3",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-inject-live-reload": "^2.1.0",
"ember-cli-terser": "^4.0.2",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-engines": "^0.8.20",
"ember-export-application-global": "^2.0.1",
"ember-page-title": "^7.0.0",
"ember-qunit": "^5.1.5",
"ember-resolver": "^8.0.3",
"ember-sinon": "^5.0.0",
"ember-source": "^4.1.0",
"ember-source-channel-url": "^3.0.0",
"ember-template-lint": "^4.0.0",
"ember-try": "~2.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-ember": "^10.5.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-qunit": "^7.2.0",
"husky": "^7.0.4",
"istanbul": "^0.4.5",
"json": "^11.0.0",
"lint-staged": "^12.3.3",
"loader.js": "^4.7.0",
"mocha": "^9.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^2.5.1",
"qunit": "^2.17.2",
"qunit-dom": "^2.0.0",
"semantic-release": "^19.0.2",
"webpack": "^5.68.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{md,json,yaml,yml}": "prettier -w"
}
}