forked from SpecterOps/bhe-code-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 872 Bytes
/
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
{
"name": "nth-prime-retriever",
"version": "2.0.0",
"author": "Francisco Quintero <[email protected]>",
"description": "Gets the nth prime number in a collection of primes",
"publishConfig": {
"flquintero:registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flquintero/bhe-code-exercise.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "jest",
"tsc-esm": "tsc -p tsconfig.json",
"tsc-cjs": "tsc -p tsconfig-cjs.json",
"prepublishOnly": "npm run tsc-esm && npm run tsc-cjs"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"dependencies": {
"eslint": "^9.2.0"
}
}