-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"name": "result-script",
"version": "1.0.2",
"description": "Typescript implementation of Rust's Result",
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"files": [
"lib"
],
"scripts": {
"start": "ts-node -O '{\"module\": \"commonjs\"}' main.ts",
"start-js": "nodemon main.js",
"build": "rm -fr lib/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/DryDish/typescript-result.git"
},
"keywords": [
"typescript",
"result",
"rust"
],
"author": "AlexM",
"license": "MIT",
"bugs": {
"url": "https://github.com/DryDish/typescript-result/issues"
},
"homepage": "https://github.com/DryDish/typescript-result#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"nodemon": "^2.0.21",
"ts-jest": "^29.0.3",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}