-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
71 lines (71 loc) · 1.64 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
{
"name": "ember-cli-deploy-redis",
"version": "4.0.0",
"description": "Ember CLI Deploy plugin to deploy file(s) into redis.",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"release": "release-it",
"test": "node tests/runner.js && ./node_modules/.bin/eslint index.js lib/* tests/**/*.js"
},
"repository": "https://github.com/ember-cli-deploy/ember-cli-deploy-redis",
"engines": {
"node": "14.* || 16.* || 18.* || >= 20"
},
"author": "Aaron Chambers and the ember-cli-deploy team",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"core-object": "^3.1.5",
"ember-cli-deploy-plugin": "^0.2.9",
"ioredis": "^4.28.5",
"rsvp": "^4.8.5"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"ember-cli": "^3.28.6",
"eslint": "^8.42.0",
"glob": "^10.2.6",
"ioredis-mock": "^5.9.1",
"lerna-changelog": "^1.0.1",
"mocha": "^8.4.0",
"release-it": "14.8.0",
"release-it-lerna-changelog": "^3.1.0",
"sinon": "^11.1.2"
},
"keywords": [
"ember-addon",
"ember-cli-deploy-plugin"
],
"ember-addon": {
"configPath": "tests/dummy/config"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "v${version}",
"pushArgs": "--follow-tags --no-verify"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md"
}
}
},
"volta": {
"node": "14.18.1",
"yarn": "1.22.17"
}
}