Skip to content

Commit 4fb5a10

Browse files
committed
pkg.json: use standard field order. Use standard gitignore.
1 parent d938149 commit 4fb5a10

File tree

2 files changed

+30
-29
lines changed

2 files changed

+30
-29
lines changed

.gitignore

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

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@
77
"index.d.ts",
88
"index.ts"
99
],
10-
"type": "module",
11-
"main": "index.js",
12-
"module": "index.js",
13-
"types": "index.d.ts",
14-
"sideEffects": false,
10+
"devDependencies": {
11+
"@noble/hashes": "2.0.0-beta.3",
12+
"@paulmillr/jsbt": "0.4.1",
13+
"@types/node": "24.2.1",
14+
"fast-check": "4.2.0",
15+
"micro-bmark": "0.4.2",
16+
"micro-should": "0.5.3",
17+
"prettier": "3.6.2",
18+
"typescript": "5.9.2"
19+
},
1520
"scripts": {
1621
"build": "tsc",
1722
"build:release": "npx --no @paulmillr/jsbt esbuild test/build",
@@ -23,23 +28,6 @@
2328
"test:deno": "deno --allow-env --allow-read test/index.ts",
2429
"test:node20": "cd test; npx tsc; node compiled/test/index.js"
2530
},
26-
"author": "Paul Miller (https://paulmillr.com)",
27-
"homepage": "https://paulmillr.com/noble/",
28-
"repository": {
29-
"type": "git",
30-
"url": "git+https://github.com/paulmillr/noble-secp256k1.git"
31-
},
32-
"license": "MIT",
33-
"devDependencies": {
34-
"@noble/hashes": "2.0.0-beta.3",
35-
"@paulmillr/jsbt": "0.4.1",
36-
"@types/node": "24.2.1",
37-
"fast-check": "4.2.0",
38-
"micro-bmark": "0.4.2",
39-
"micro-should": "0.5.3",
40-
"prettier": "3.6.2",
41-
"typescript": "5.9.2"
42-
},
4331
"keywords": [
4432
"secp256k1",
4533
"rfc6979",
@@ -54,5 +42,17 @@
5442
"bitcoin",
5543
"ethereum"
5644
],
57-
"funding": "https://paulmillr.com/funding/"
45+
"homepage": "https://paulmillr.com/noble/",
46+
"funding": "https://paulmillr.com/funding/",
47+
"repository": {
48+
"type": "git",
49+
"url": "git+https://github.com/paulmillr/noble-secp256k1.git"
50+
},
51+
"type": "module",
52+
"main": "index.js",
53+
"module": "index.js",
54+
"types": "index.d.ts",
55+
"sideEffects": false,
56+
"author": "Paul Miller (https://paulmillr.com)",
57+
"license": "MIT"
5858
}

0 commit comments

Comments
 (0)