-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.57 KB
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
{
"name": "@ember/optional-features",
"version": "2.0.0",
"description": "The default blueprint for ember-cli addons.",
"keywords": [
"ember-addon"
],
"repository": {
"type": "git",
"url": "git+https://github.com/emberjs/ember-optional-features.git"
},
"license": "MIT",
"contributors": [
"Godfrey Chan <godfreykfc@gmail.com>"
],
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "ember build",
"lint:js": "eslint . --cache",
"start": "ember serve",
"test": "qunit tests/**/*-test.js"
},
"dependencies": {
"chalk": "^4.1.2",
"ember-cli-version-checker": "^5.1.2",
"glob": "^7.1.7",
"inquirer": "^7.3.3",
"mkdirp": "^1.0.4",
"silent-error": "^1.1.1"
},
"devDependencies": {
"broccoli-test-helper": "^2.0.0",
"ember-cli": "~3.27.0",
"ember-cli-dependency-checker": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^4.0.3",
"prettier": "^2.3.2",
"qunit": "^2.16.0",
"release-it": "^14.10.1",
"release-it-lerna-changelog": "^2.4.0"
},
"engines": {
"node": "10.* || 12.* || >= 14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}