-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
130 lines (130 loc) · 3.98 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
{
"name": "ember-modal-service",
"version": "2.7.1",
"description": "An ember-cli addon to manage modals as promises.",
"keywords": [
"ember-addon"
],
"repository": {
"type": "git",
"url": "https://github.com/BBVAEngineering/ember-modal-service.git"
},
"license": "MIT",
"author": "BBVAEngineering",
"directories": {
"test": "tests"
},
"contributors": [
{
"name": "beatrizdemiguelperez",
"url": "https://github.com/beatrizdemiguelperez/"
},
{
"name": "adrigzr",
"url": "https://github.com/adrigzr/"
},
{
"name": "shokmaster",
"url": "https://github.com/shokmaster/"
},
{
"name": "josex2r",
"url": "https://github.com/josex2r/"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm run test"
}
},
"scripts": {
"build": "ember build --environment=production",
"check-coverage": "istanbul check-coverage coverage/coverage-final.json --statements 100 --branches 100 --functions 100 --lines 100",
"commit": "git-cz",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint --max-warnings 0 ./*.js addon app config tests",
"posttest": "npm run report-coverage && npm run check-coverage && npm run validate-coverage",
"report-coverage": "istanbul report --include=coverage/coverage-final.json text",
"start": "ember serve",
"test": "npm-run-all lint:* test:*",
"test:ember": "COVERAGE=true ember test",
"semantic-release": "semantic-release",
"validate-coverage": "test \"$(cat coverage/coverage-summary.json | json total.lines.total)\" -gt 0"
},
"dependencies": {
"@ember/test-waiters": "^3.0.0",
"@glimmer/tracking": "^1.0.1",
"ember-cli-babel": "^7.19.0",
"ember-cli-htmlbars": "^5.3.1",
"ember-transition-end": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@ember/optional-features": "^2.0.0",
"@glimmer/component": "^1.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"babel-eslint": "^10.1.0",
"broccoli-asset-rev": "^3.0.0",
"broccoli-test-helper": "^2.0.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"ember-auto-import": "^1.6.0",
"ember-cli": "~3.21.2",
"ember-cli-code-coverage": "^1.0.0-beta.9",
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-cli-qunit-parameterize": "^1.0.1",
"ember-cli-sri": "^2.1.1",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.1",
"ember-load-initializers": "^2.1.1",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-qunit": "^4.6.0",
"ember-resolver": "^8.0.2",
"ember-source": "^3.21.1",
"ember-source-channel-url": "^3.0.0",
"ember-template-lint": "^2.12.0",
"ember-test-helpers": "^0.6.3",
"ember-try": "^1.4.0",
"eslint": "^7.8.1",
"eslint-config-bbva": "^3.2.2",
"eslint-plugin-bbva": "^1.3.3",
"eslint-plugin-ember": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.3.0",
"istanbul": "^0.4.5",
"json": "^10.0.0",
"loader.js": "^4.7.0",
"npm-run-all": "^4.1.5",
"qunit-dom": "^1.4.0",
"semantic-release": "^17.1.1",
"sinon": "^9.0.3"
},
"resolutions": {
"ember-cli-babel": "~7.19.0",
"babel-plugin-ember-modules-api-polyfill": "2.13.0"
},
"engines": {
"node": "10.* || >= 12"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/BBVAEngineering/ember-modal-service/issues"
},
"homepage": "https://github.com/BBVAEngineering/ember-modal-service#readme"
}