-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "@ember/optional-features",
"version": "2.2.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 <[email protected]>"
],
"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.23.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-plan": "^0.7.1"
},
"engines": {
"node": "10.* || 12.* || >= 14"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}