-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
{
"name": "ember-cli-preprocess-registry",
"version": "5.0.1",
"description": "Preprocessor registry used internally by ember-cli.",
"homepage": "https://github.com/ember-cli/ember-cli-preprocessor-registry#readme",
"bugs": {
"url": "https://github.com/ember-cli/ember-cli-preprocessor-registry/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/ember-cli-preprocessor-registry.git"
},
"license": "MIT",
"author": "ember-cli Contributors",
"main": "index.js",
"files": [
"index.js",
"preprocessors.js",
"lib"
],
"scripts": {
"lint": "mocha tests/unit/lint-test.js",
"test": "mocha tests/**/*"
},
"dependencies": {
"broccoli-funnel": "^3.0.8",
"debug": "^4.3.2"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^5.0.0",
"chai": "^4.3.4",
"eslint-plugin-chai-expect": "^2.0.1",
"mocha": "^6.2.2",
"mocha-eslint": "^5.0.0",
"release-it": "^15.5.0"
},
"engines": {
"node": "16.* || >= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"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
}
}
}