-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.88 KB
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
58
59
60
61
62
63
64
{
"name": "@nataliebasille/typescript-utils",
"version": "1.0.17",
"description": "Common coding needs written in typescript",
"exports": {
"./functional/maybe": {
"import": "./dist/functional/maybe/index.js",
"require": "./dist/functional/maybe/index.cjs",
"types": "./dist/functional/maybe/index.d.ts"
},
"./functional/result": {
"import": "./dist/functional/result/index.js",
"require": "./dist/functional/result/index.cjs",
"types": "./dist/functional/result/index.d.ts"
},
"./functional": {
"import": "./dist/functional/index.js",
"require": "./dist/functional/index.cjs",
"types": "./dist/functional/index.d.ts"
},
"./random": {
"import": "./dist/random/index.js",
"require": "./dist/random/index.cjs",
"types": "./dist/random/index.d.ts"
},
"./range": {
"import": "./dist/range/index.js",
"require": "./dist/range/index.cjs",
"types": "./dist/range/index.d.ts"
}
},
"type": "module",
"scripts": {
"build": "npx tsup --dts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/nataliebasille/natcore-typescript-utils.git"
},
"publishConfig": {
"@nataliebasille:registry": "https://npm.pkg.github.com"
},
"author": "Natalie Basille",
"license": "ISC",
"bugs": {
"url": "https://github.com/nataliebasille/typescript-utils/issues"
},
"homepage": "https://github.com/nataliebasille/typescript-utils#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"dotenv": "^16.4.5",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"expect-type": "^0.17.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.2.3",
"typescript": "^5.3.2"
}
}