-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.56 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-phd",
"description": "An Aurelia css plugin project.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pinterweb/aurelia-phd.git"
},
"license": "MIT",
"author": "Jeremy Zagorski <jmzagorski@gmail.com>",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jasmine": "^2.8.9",
"@types/node": "^10.11.6",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.2",
"aurelia-cli": "^1.0.2",
"aurelia-testing": "^1.0.0",
"aurelia-tools": "^2.0.0",
"autoprefixer": "^9.4.8",
"bootstrap": "^3.4.1",
"browser-sync": "^2.26.3",
"bulma": "^0.8.1",
"connect-history-api-fallback": "^1.6.0",
"cssnano": "^4.1.10",
"debounce": "^1.2.0",
"del": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"gulp": "^4.0.0",
"gulp-eslint": "^6.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.0",
"gulp-watch": "^5.0.1",
"husky": "^3.1.0",
"jasmine-core": "^3.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "^2.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor": "^0.4.0",
"minimatch": "^3.0.4",
"postcss-url": "^8.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"promise-polyfill": "^8.1.0",
"requirejs": "^2.3.6",
"standard-version": "^7.0.1",
"text": "requirejs/text#latest",
"through2": "^3.0.0",
"tslint": "^5.13.0",
"typescript": "^3.1.2",
"vinyl-fs": "^3.0.3"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "au build-plugin",
"lint": "eslint ./src/**/*.ts",
"start": "au run",
"watch": "au build-plugin --watch",
"prepare": "npm run build",
"prettyup": "pretty-quick --staged",
"preversion": "au test",
"test": "au test",
"prerelease": "npm run build && npm run test",
"release": "standard-version --infile ./doc/CHANGELOG.md"
},
"engines": {
"node": ">=8.9.0"
},
"main": "dist/commonjs/index.js",
"module": "dist/native-modules/index.js",
"private": true,
"files": [
"dist",
"src"
],
"dependencies": {}
}