-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
97 lines (97 loc) · 2.43 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
{
"name": "ember-cli-update",
"version": "2.0.1",
"description": "Update Ember CLI projects",
"keywords": [
"ember.js",
"ember-cli"
],
"homepage": "https://github.com/ember-cli/ember-cli-update#readme",
"bugs": {
"url": "https://github.com/ember-cli/ember-cli-update/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/ember-cli-update.git"
},
"license": "MIT",
"author": "Kelly Selden",
"main": "src/index.js",
"bin": {
"ecu": "bin/ember-cli-update.js",
"ember-cli-update": "bin/ember-cli-update.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"lint": "eslint . --ext js,json",
"start": "node bin/ember-cli-update",
"test": "mocha",
"test:bin": "mocha --config .mocharc.bin.js",
"test:fast": "mocha --config .mocharc.fast.js",
"preversion": "yargs-help-output README.md --npm-script-name start",
"version": "git add README.md"
},
"dependencies": {
"boilerplate-update": "^2.1.1",
"debug": "^4.2.0",
"execa": "^5.0.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.0.0",
"pacote": "^13.6.0",
"resolve": "^1.10.0",
"semver": "^7.3.2",
"tmp": "0.2.1",
"update-notifier": "^5.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@kellyselden/node-template": "3.0.0",
"@release-it-plugins/lerna-changelog": "^5.0.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-fs": "^2.0.0",
"chai-string": "^1.5.0",
"ember-cli": "3.16.0",
"eslint": "^8.16.0",
"eslint-config-sane": "^1.0.2",
"eslint-config-sane-node": "^1.1.1",
"eslint-plugin-json-files": "^1.3.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^3.0.1",
"git-diff-apply": "^3.0.0",
"git-fixtures": "^6.0.0",
"mocha": "^10.0.0",
"mocha-helpers": "^6.2.1",
"release-it": "^15.5.0",
"renovate-config-standard": "2.1.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"standard-node-template": "3.0.0",
"yargs-help-output": "^2.0.0"
},
"engines": {
"node": ">=14.15"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}