-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.34 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
{
"name": "prime-lib",
"version": "0.5.0",
"description": "Prime number library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "del /s/q .\\test\\*.js && del /s/q .\\src\\*.js && del /s/q .\\benchmarks\\*.js && rd /s/q .\\dist",
"build": "tsc -p src",
"lint": "tslint --fix ./src/*.ts ./test/*.ts",
"test-file": "nyc mocha -r ts-node/register",
"test": "npm run test-file -- test/*.spec.ts",
"bench": "tsc -p ./benchmarks && node ./benchmarks/index.js"
},
"files": [
"dist"
],
"homepage": "https://github.com/vitaly-t/prime-lib",
"repository": {
"type": "git",
"url": "https://github.com/vitaly-t/prime-lib.git"
},
"bugs": {
"url": "https://github.com/vitaly-t/prime-lib/issues",
"email": "[email protected]"
},
"keywords": [
"prime",
"primes",
"generator",
"sieve",
"eratosthenes",
"meissel",
"lehmer"
],
"author": {
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=10.3.0"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"@types/node": "18.7.18",
"chai": "4.3.6",
"mocha": "10.0.0",
"nyc": "15.1.0",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"tslint": "6.1.3",
"typescript": "4.8.3"
}
}