-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "aurelia-fontawesome-loader",
"version": "1.0.0-beta.1",
"description": "A webpack loader for aurelia-fontawesome",
"main": "dist/index.js",
"scripts": {
"build": "tsc && copyfiles -f dist/loader.js dist/utils.js . && rimraf --glob dist/loader.*",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .ts",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rmja/aurelia-fontawesome-loader.git"
},
"keywords": [
"aurelia",
"fontawesome",
"font-awesome",
"webpack",
"loader"
],
"author": "Rasmus Melchior Jacobsen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rmja/aurelia-fontawesome-loader/issues"
},
"homepage": "https://github.com/rmja/aurelia-fontawesome-loader#readme",
"devDependencies": {
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"aurelia-loader": "^1.0.2",
"copyfiles": "^2.4.1",
"eslint": "^8.1.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.3",
"webpack": "^5.61.0"
},
"peerDependencies": {
"webpack": "^5.61.0",
"aurelia-loader": "^1.0.2"
},
"dependencies": {
"aurelia-pal": "^1.8.2",
"htmlparser2": "^9.0.0"
}
}