generated from staticwebdev/vanilla-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.85 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": "staticweb-aurelia",
"description": "An Aurelia 2 client application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "???"
},
"license": "UNLICENSED",
"dependencies": {
"aurelia": "dev"
},
"devDependencies": {
"@aurelia/plugin-gulp": "dev",
"@aurelia/testing": "dev",
"@aurelia/ts-jest": "dev",
"@types/jest": "^25.0.0",
"@types/node": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"autoprefixer": "^9.0.0",
"browser-sync": "^2.0.0",
"connect-history-api-fallback": "^1.0.0",
"cross-env": "^7.0.0",
"del": "^5.0.0",
"eslint": "^7.0.0",
"gulp": "^4.0.0",
"gulp-dumber": "^1.0.0",
"gulp-dumber-css-module": "^0.1.0",
"gulp-if": "^3.0.0",
"gulp-plumber": "^1.0.0",
"gulp-postcss": "^8.0.0",
"gulp-terser": "^1.0.0",
"gulp-typescript": "^5.0.0",
"htmlhint": "^0.11.0",
"merge2": "^1.0.0",
"postcss-url": "^8.0.0",
"typescript": "^3.0.0"
},
"scripts": {
"lint:js": "eslint src test cypress --ext .js,.ts",
"lint:html": "htmlhint -c .htmlhintrc src",
"lint": "npm run lint:js && npm run lint:html",
"pretest": "npm run lint",
"start": "gulp",
"build": "gulp clean && cross-env NODE_ENV=production gulp build",
"clear-cache": "gulp clear-cache",
"test": "jest",
"test:e2e": "cypress run"
},
"jest": {
"transform": {
"\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
"\\.(ts|html)$": [
"@aurelia/ts-jest",
{
"useCSSModule": true
}
]
},
"setupFiles": [
"<rootDir>/test/setup.ts"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
}
}