-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "broccoli-asset-rewrite",
"version": "3.0.0",
"description": "broccoli plugin to rewrite a source tree from an asset map.",
"keywords": [
"broccoli",
"broccoli-plugin",
"asset",
"rewrite",
"fingerprint"
],
"homepage": "https://github.com/ember-cli/broccoli-asset-rewrite",
"bugs": {
"url": "https://github.com/ember-cli/broccoli-asset-rewrite/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/ember-cli/broccoli-asset-rewrite"
},
"license": "MIT",
"author": "Rick Harrison",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm-run-all lint test:mocha",
"test:mocha": "mocha tests",
"test:cover": "istanbul cover ./node_modules/mocha/bin/_mocha tests"
},
"dependencies": {
"broccoli-filter": "^1.2.3"
},
"devDependencies": {
"broccoli": "^0.16.9",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.2.0",
"codecov": "^1.0.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"istanbul": "^0.4.1",
"mocha": "~8.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"release-it-lerna-changelog": "^3.0.0",
"walk-sync": "~0.1.2"
},
"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"
}
}
}