This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.53 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
{
"name": "ember-cli-polymer-bundler",
"version": "1.0.0",
"description": "Allows you to use Polymer in your Ember application.",
"files": [
"index.js",
"lib",
"polyfills"
],
"scripts": {
"build": "ember build",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint --max-warnings 0 ./*.js lib blueprints config node-tests tests",
"start": "ember server",
"pretest": "npm run clean-coverage",
"test": "npm run test:node && npm run test:ember",
"test:node": "nyc mocha --recursive 'node-tests/**/*-test.js'",
"test:ember": "COVERAGE=true ember test",
"clean-coverage": "rm -rf coverage",
"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",
"check-coverage": "istanbul check-coverage coverage/coverage-final.json --statements 98 --functions 97 --branches 93 --lines 98",
"commit": "git-cz",
"posttest": "npm run merge-coverage && npm run report-coverage && npm run check-coverage",
"report-coverage": "istanbul report --include=coverage/coverage-final.json text",
"semantic-release": "semantic-release"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@ember/optional-features": "^0.7.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"bower": "^1.8.4",
"commitizen": "^3.0.5",
"console-ui": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"ember-cli": "^3.0.0",
"ember-cli-code-coverage": "^1.0.0-beta.8",
"ember-cli-dependency-checker": "^3.0.0",
"ember-cli-htmlbars-inline-precompile": "^2.1.0",
"ember-cli-qunit": "^4.4.0",
"ember-cli-template-lint": "^1.0.0-beta.2",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-load-initializers": "^2.0.0",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-resolver": "^7.0.0",
"ember-source": "~3.8.0",
"ember-source-channel-url": "^2.0.1",
"ember-try": "^1.2.1",
"eslint": "^5.12.0",
"eslint-config-bbva": "^2.0.3",
"eslint-plugin-ember": "^6.1.0",
"eslint-plugin-node": "^8.0.1",
"husky": "^2.0.0",
"istanbul": "^0.4.5",
"loader.js": "^4.7.0",
"mocha": "^5.0.0",
"nyc": "^13.1.0",
"qunit-dom": "^0.8.0",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3"
},
"keywords": [
"ember-addon",
"polymer",
"web components",
"custom elements",
"polymer-project"
],
"repository": {
"type": "git",
"url": "https://github.com/BBVAEngineering/ember-cli-polymer-bundler.git"
},
"license": "MIT",
"author": "BBVAEngineering",
"directories": {
"doc": "doc",
"test": "tests"
},
"dependencies": {
"@wctools/polymer-project-builder": "^1.0.0",
"autoprefixer": "^9.4.7",
"broccoli-caching-writer": "^3.0.3",
"broccoli-funnel": "^3.0.3",
"broccoli-merge-trees": "^3.0.0",
"broccoli-plugin": "^1.3.0",
"deep-extend": "^0.6.0",
"ember-cli-babel": "^7.1.2",
"ember-cli-htmlbars": "^3.0.0",
"fs-extra": "^8.0.0",
"html-postcss": "^0.1.2",
"parse5": "^5.1.0",
"path": "^0.12.7",
"polymer-analyzer": "^2.3.0",
"polymer-bundler": "^3.1.1"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://dunnkers.github.io/ember-polymer/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}