-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.68 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "aurelia-fontawesome",
"version": "1.0.0-beta.1",
"description": "Aurelia wrapper around the font awesome 5 library",
"keywords": [
"aurelia",
"fontawesome",
"fortawesome",
"icon"
],
"main": "dist/commonjs/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pinterweb/aurelia-fontawesome.git"
},
"author": "Jeremy Zagorski <jmzagorski@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"aurelia-framework": "^1.3.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@types/jasmine": "^3.6.2",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-cli": "^2.0.2",
"aurelia-testing": "^1.0.0",
"aurelia-tools": "^2.0.0",
"browser-sync": "^2.26.13",
"connect-history-api-fallback": "^1.6.0",
"debounce": "^1.2.0",
"del": "^6.0.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.2.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^5.0.1",
"gulp-watch": "^5.0.1",
"husky": "^4.3.0",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-typescript-preprocessor": "^0.4.0",
"minimatch": "^3.0.4",
"prettier": "^1.18.2",
"pretty-quick": "^3.1.0",
"promise-polyfill": "^8.2.0",
"requirejs": "^2.3.6",
"standard-version": "^9.0.0",
"text": "requirejs/text#latest",
"through2": "^4.0.2",
"typescript": "^4.1.2",
"vinyl-fs": "^3.0.3"
},
"scripts": {
"build": "au build-plugin",
"start": "au run --open",
"prepare": "npm run build",
"pretest": "npm run lint",
"preversion": "npm run test",
"test": "au test",
"test:watch": "au test --watch",
"lint": "au lint",
"prerelease": "npm run test && npm run build",
"release": "git add dist/ && standard-version --commit-all --infile ./doc/CHANGELOG.md"
},
"engines": {
"node": ">=8.9.0"
},
"module": "dist/native-modules/index.js"
}