generated from santi100a/npm-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "@santi100/eratosthenes-sieve",
"version": "0.0.1",
"main": "cjs/index.js",
"module": "index.js",
"typings": "cjs/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.4.3",
"prettier": "^3.0.2",
"remark-cli": "^11.0.0",
"remark-gfm": "^3.0.1",
"remark-validate-links": "^12.1.1",
"typescript": "4.9.5"
},
"author": "santi100a <[email protected]>",
"description": "Santi's Energetic Sieve of Eratosthenes: How can you sift numbers?",
"keywords": [
"sieve-of-eratosthenes",
"math",
"prime-numbers",
"es3",
"santi100",
"lightweight",
"portable"
],
"repository": {
"url": "https://github.com/santi100a/eratosthenes-sieve",
"type": "git"
},
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "tsc -w",
"prettify": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts",
"esm-wrapper": "node scripts/esm-wrapper.js",
"validate-package-json": "node scripts/validate-package-json.js",
"lint-fix": "eslint --fix src/**/*.ts",
"test:watch": "jest --watchAll",
"check-links": "remark --frail .",
"postbuild": "yarn esm-wrapper",
"prepublishOnly": "yarn validate-package-json"
},
"dependencies": {
"@santi100/assertion-lib": "^2.0.2"
}
}