Skip to content

Commit

Permalink
build: update deps and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrzhou committed May 30, 2021
1 parent ee3bcc7 commit 162d2a0
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"uinix-fp": "^0.1.0"
"uinix-fp": "^0.2.2"
},
"devDependencies": {
"@types/tape": "^4.13.0",
Expand All @@ -31,19 +31,18 @@
"known-css-properties": "^0.21.0",
"tape": "^5.2.2",
"type-coverage": "^2.17.5",
"typescript": "^4.2.4",
"typescript": "^4.3.2",
"uinix-scripts": "^0.1.2",
"xo": "^0.40.1"
},
"scripts": {
"build": "npm run clean && tsc && type-coverage",
"clean": "uinix-scripts clean",
"coverage": "npm run type-coverage && npm run test-coverage",
"lint": "xo --fix",
"prepack": "npm run clean && npm run coverage && npm run lint",
"prepack": "npm run build && npm run lint",
"report": "node script/report.js",
"test": "npm run prepack",
"test-coverage": "c8 --check-coverage --lines 100 --functions 100 --branches 100 --reporter lcov node test/index.js",
"type-coverage": "tsc && type-coverage"
"test": "npm run build && npm run lint && npm run test-coverage"
},
"engines": {
"node": ">=12"
Expand Down

0 comments on commit 162d2a0

Please sign in to comment.