Skip to content

Commit fa70e05

Browse files
committed
Added things to package.json and added prettier
1 parent 84d218f commit fa70e05

File tree

2 files changed

+38
-27
lines changed

2 files changed

+38
-27
lines changed

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"useTabs": true
3+
}

package.json

Lines changed: 35 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,37 @@
11
{
2-
"name": "microdiff",
3-
"version": "1.0.0",
4-
"description": "Small, fast, zero dependency deep object and array comparison",
5-
"main": "./dist/index.js",
6-
"module": "./dist/index.js",
7-
"types": "./dist/index.d.ts",
8-
"scripts": {
9-
"build": "tsc",
10-
"test": "tsc && uvu tests",
11-
"bench": "tsc && node bench.js"
12-
},
13-
"keywords": [
14-
"diff",
15-
"comparison"
16-
],
17-
"author": "AsyncBanana",
18-
"license": "MIT",
19-
"files": [
20-
"dist"
21-
],
22-
"devDependencies": {
23-
"deep-diff": "^1.0.2",
24-
"deep-object-diff": "^1.1.0",
25-
"typescript": "^4.4.4",
26-
"uvu": "^0.5.2"
27-
},
28-
"type": "module"
2+
"name": "microdiff",
3+
"version": "1.0.0",
4+
"description": "Small, fast, zero dependency deep object and array comparison",
5+
"main": "./dist/index.js",
6+
"module": "./dist/index.js",
7+
"types": "./dist/index.d.ts",
8+
"scripts": {
9+
"build": "tsc",
10+
"test": "tsc && uvu tests",
11+
"bench": "tsc && node bench.js",
12+
"prepublish": "tsc"
13+
},
14+
"keywords": [
15+
"diff",
16+
"comparison"
17+
],
18+
"author": "AsyncBanana",
19+
"license": "MIT",
20+
"files": [
21+
"dist"
22+
],
23+
"devDependencies": {
24+
"deep-diff": "^1.0.2",
25+
"deep-object-diff": "^1.1.0",
26+
"prettier": "^2.4.1",
27+
"typescript": "^4.4.4",
28+
"uvu": "^0.5.2"
29+
},
30+
"type": "module",
31+
"repository": {
32+
"type": "git",
33+
"url": "https://github.com/AsyncBanana/microdiff"
34+
},
35+
"homepage": "https://github.com/AsyncBanana/microdiff#readme",
36+
"bugs": "https://github.com/AsyncBanana/microdiff/issues"
2937
}

0 commit comments

Comments
 (0)