-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
69 lines (69 loc) · 1.53 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
{
"name": "ember-load-initializers",
"version": "3.0.1",
"description": "A tiny add-on to autoload your initializer files in ember-cli.",
"keywords": [],
"type": "module",
"homepage": "https://github.com/ember-cli/ember-load-initializers#readme",
"bugs": {
"url": "https://github.com/ember-cli/ember-load-initializers/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/ember-load-initializers.git"
},
"files": [
"dist"
],
"license": "MIT",
"contributors": [
"Stefan Penner <[email protected]>",
"Mattia Gheda <[email protected]>",
"Manuel Wiedenmann <[email protected]>",
"Alex Navasardyan <[email protected]>"
],
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"prepare": "tsc",
"start": "tsc --watch"
},
"devDependencies": {
"ember-source": "^5.11.1",
"lerna-changelog": "^1.0.1",
"release-it-lerna-changelog": "^1.0.3",
"release-it": "^12.4.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"ember-source": ">= 5"
},
"engines": {
"node": ">= 18.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
}
}