forked from vultix/ts-results
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "@petsapp/ts-results",
"version": "3.5.0",
"description": "A typescript implementation of Rust's Result and Option objects.",
"repository": "https://github.com/petsapp/ts-results",
"private": false,
"main": "./dist/index.js",
"scripts": {
"build": "npm run clean && npm run build:ts && npm run build:copy",
"build:ts": "tsc -p tsconfig.json && tsc -p tsconfig.json -m esnext --outDir dist/esm/ -d false -declarationMap false",
"build:copy": "copyfiles README.md LICENSE src/package.json dist --flat && copyfiles src/rxjs-operators/package.json dist --up 1",
"clean": "rm -rf dist",
"test": "jest",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "https://github.com/vultix/ts-results.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^26.0.22",
"conditional-type-checks": "^1.0.5",
"copyfiles": "^2.4.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rxjs": "^6.6.7",
"ts-jest": "^26.5.4",
"tslib": "^2.1.0",
"typescript": "^4.2"
}
}