Skip to content

Commit e1081b7

Browse files
committed
chore: Upgrade deps in app/templates/
1 parent 8784bfd commit e1081b7

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

app/templates/_package.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,28 +36,35 @@
3636
"clean": "shx rm -rf dist/",
3737
"lint": "npm run lint:debug -- --config tslint.prod.json",
3838
"lint:debug": "tslint --project tsconfig.json --format stylish",
39-
"prepublishOnly": "npm run lint && npm run build",
40-
"test": "npm run lint && npm run ts && wct --config-file wct.config.json",
39+
"prepublishOnly": "npm run clean && npm run lint && npm run build",
40+
"test": "npm run clean && npm run lint && npm run ts && wct --config-file wct.config.json",
4141
"test:ci": "wct --config-file wct.config.ci.json",
4242
"test:sl": "wct --config-file wct.config.sl.json",
43-
"ts": "npm run clean && tsc",
43+
"ts": "tsc",
44+
"upgrade": "npm outdated --dev && npm update --dev && npm audit fix",
4445
"watch": "npm run ts -- --watch"
4546
},
47+
"husky": {
48+
"hooks": {
49+
"pre-commit": "npm run lint && npm run ts -- --noEmit && npm run clean"
50+
}
51+
},
4652
"dependencies": {
4753
"lit-element": "^2.2.1",
4854
"lit-html": "^1.1.2",
4955
"tslib": "^1.10.0"
5056
},
5157
"devDependencies": {
52-
"@reallyland/tsconfig": "^1.0.0",
58+
"@reallyland/tsconfig": "^1.0.1",
5359
"@reallyland/tslint-config": "^1.1.1",
54-
"@types/chai": "^4.2.1",
60+
"@types/chai": "^4.2.5",
5561
"@types/mocha": "^5.2.7",
5662
"chai": "^4.2.0",
57-
"mocha": "^6.2.0",
63+
"husky": "^3.0.9",
64+
"mocha": "^6.2.2",
5865
"shx": "^0.3.2",
59-
"tslint": "^5.19.0",
60-
"typescript": "^3.6.2",
66+
"tslint": "^5.20.1",
67+
"typescript": "^3.7.2",
6168
"wct-mocha": "^1.0.1"
6269
},
6370
"engines": {

0 commit comments

Comments
 (0)