Skip to content

Commit

Permalink
Added things to package.json and added prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
AsyncBanana committed Oct 31, 2021
1 parent 84d218f commit fa70e05
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 27 deletions.
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"useTabs": true
}
62 changes: 35 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,37 @@
{
"name": "microdiff",
"version": "1.0.0",
"description": "Small, fast, zero dependency deep object and array comparison",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && uvu tests",
"bench": "tsc && node bench.js"
},
"keywords": [
"diff",
"comparison"
],
"author": "AsyncBanana",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"deep-diff": "^1.0.2",
"deep-object-diff": "^1.1.0",
"typescript": "^4.4.4",
"uvu": "^0.5.2"
},
"type": "module"
"name": "microdiff",
"version": "1.0.0",
"description": "Small, fast, zero dependency deep object and array comparison",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && uvu tests",
"bench": "tsc && node bench.js",
"prepublish": "tsc"
},
"keywords": [
"diff",
"comparison"
],
"author": "AsyncBanana",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"deep-diff": "^1.0.2",
"deep-object-diff": "^1.1.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4",
"uvu": "^0.5.2"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/AsyncBanana/microdiff"
},
"homepage": "https://github.com/AsyncBanana/microdiff#readme",
"bugs": "https://github.com/AsyncBanana/microdiff/issues"
}

0 comments on commit fa70e05

Please sign in to comment.