-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
71 lines (71 loc) · 1.84 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
71
{
"name": "broccoli-favicon",
"version": "3.0.0",
"description": "Generate favicons and HTML using Favicons package",
"main": "dist/index.js",
"scripts": {
"dev": "broccoli serve",
"build": "rm -rf dist && broccoli build dist",
"lint:js": "eslint .",
"lint:format": "prettier . --check --loglevel=warn",
"lint:format:fix": "prettier . --write --loglevel=warn",
"test": "npm run build && mocha dist/tests --reporter tap",
"test:debug": "mocha debug dist/tests",
"test:watch": "testem",
"prepublish": "npm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/davewasmer/broccoli-favicon"
},
"keywords": [
"broccoli",
"plugin",
"favicons"
],
"author": "Dave Wasmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/davewasmer/broccoli-favicon/issues"
},
"homepage": "https://github.com/davewasmer/broccoli-favicon",
"files": [
"dist/",
"!dist/tests"
],
"release-it": {
"github": {
"release": true
}
},
"dependencies": {
"broccoli-caching-writer": "^3.0.3",
"favicons": "^6.2.2",
"heimdalljs-logger": "^0.1.10",
"himalaya": "^1.1.0",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.7",
"@babel/preset-env": "^7.15.6",
"broccoli": "^3.5.2",
"broccoli-babel-transpiler": "^7.8.0",
"broccoli-cli": "^1.0.0",
"broccoli-merge-trees": "^4.2.0",
"broccoli-stew": "^3.0.0",
"broccoli-test-helper": "^2.0.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^9.1.1",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"testem": "^3.5.0"
},
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0",
"npm": ">=7.0.0"
}
}