-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "primality",
"version": "3.0.0",
"description": "A JavaScript library for prime numbers.",
"keywords": [
"browser",
"client",
"math",
"mathematics",
"number",
"numbers",
"util"
],
"homepage": "https://github.com/kenany/primality",
"bugs": {
"url": "https://github.com/kenany/primality/issues"
},
"author": "Kenan Yildirim <kenan@kenany.me> (https://kenany.me/)",
"main": "primality.js",
"exports": "./primality.js",
"directories": {
"test": "./test"
},
"repository": "github:kenany/primality",
"type": "module",
"engines": {
"node": "18 || >=20"
},
"files": [
"CHANGELOG.md",
"primality.js",
"LICENSE.txt"
],
"scripts": {
"bench": "node perf/index.js",
"lint": "eslint *.js test/**/*.js",
"release": "semantic-release",
"tests-only": "tape test/index.js",
"pretest": "npm run -s lint",
"test": "npm run -s tests-only"
},
"dependencies": {
"factorial": "^2.0.0",
"lodash.isfinite": "^2.4.1"
},
"devDependencies": {
"@kenan/eslint-config": "^11.1.10",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"benchmark": "^2.1.4",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"numbers": "^0.7.0",
"semantic-release": "^24.2.0",
"tape": "^5.9.0"
}
}