Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Commit d01768b

Browse files
committed
pkg.json: use standard field order. Use standard gitignore.
1 parent 53a0f68 commit d01768b

3 files changed

Lines changed: 36 additions & 26 deletions

File tree

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
*.tgz
3+
/*.js
4+
*.js.map
5+
*.d.ts
6+
*.d.ts.map
7+
/test/build
8+
/test/compiled

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22
"name": "micro-bmark",
33
"version": "0.4.2",
44
"description": "Benchmark your JS projects with nanosecond resolution",
5-
"main": "index.js",
6-
"type": "module",
75
"files": [
86
"index.js",
97
"compare.js",
108
"index.d.ts",
119
"compare.d.ts",
1210
"src"
1311
],
12+
"devDependencies": {
13+
"@paulmillr/jsbt": "0.4.1",
14+
"micro-should": "0.5.3",
15+
"prettier": "3.6.2",
16+
"typescript": "5.9.2"
17+
},
1418
"scripts": {
1519
"build": "tsc",
1620
"test": "node test.js",
@@ -27,17 +31,15 @@
2731
"hrtime",
2832
"micro"
2933
],
30-
"author": "Paul Miller (https://paulmillr.com)",
31-
"homepage": "https://github.com/paulmillr/micro-bmark",
3234
"repository": {
3335
"type": "git",
34-
"url": "https://github.com/paulmillr/micro-bmark.git"
36+
"url": "git+https://github.com/paulmillr/micro-bmark.git"
3537
},
36-
"license": "MIT",
37-
"devDependencies": {
38-
"@paulmillr/jsbt": "0.4.1",
39-
"micro-should": "0.5.3",
40-
"prettier": "3.5.3",
41-
"typescript": "5.8.3"
42-
}
38+
"type": "module",
39+
"main": "index.js",
40+
"module": "index.js",
41+
"types": "index.d.ts",
42+
"sideEffects": false,
43+
"author": "Paul Miller (https://paulmillr.com)",
44+
"license": "MIT"
4345
}

0 commit comments

Comments
 (0)