-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 1.92 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": "ember-cli-polyfill-io",
"version": "2.0.0",
"description": "Ember CLI addon for including polyfill.io in your Ember application",
"keywords": [
"ember-addon",
"polyfill",
"polyfill.io"
],
"license": "MIT",
"author": "Alex LaFroscia <[email protected]>",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/alexlafroscia/ember-cli-polyfill-io.git"
},
"scripts": {
"build": "ember build",
"lint": "eslint .",
"test": "mocha node-tests",
"release": "standard-version"
},
"dependencies": {
"debug": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ember/optional-features": "^1.3.0",
"babel-eslint": "^10.1.0",
"chai": "^3.5.0",
"ember-cli": "^3.18.0",
"ember-cli-app-version": "^3.2.0",
"ember-cli-babel": "^7.19.0",
"ember-cli-htmlbars": "^5.0.0",
"ember-load-initializers": "^2.1.1",
"ember-resolver": "^8.0.0",
"ember-source": "^3.18.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-ember": "^8.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"loader.js": "^4.7.0",
"mocha": "^3.2.0",
"prettier": "^2.0.5",
"standard-version": "^7.1.0"
},
"engines": {
"node": "10.* || >= 12"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"files": [
"index.js",
"lib/index.js"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{md,json}": "prettier --write"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
},
"volta": {
"node": "12.16.3",
"yarn": "1.22.4"
}
}