-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
54
55
56
57
{
"name": "resultwire",
"version": "3.0.0",
"description": "Rust-like Result types, easily serialized over the wire",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": [{
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}],
"scripts": {
"build": "tsup",
"lint": "tslint -p tsconfig.json",
"doc": "typedoc src",
"prepublishOnly": "rimraf dist -rf && npm run lint && npm run test && npm run build",
"test": "npm run coverage",
"test-watch": "jest --watch --config jestconfig.json",
"test-clear-cache": "jest --clearCache",
"coverage": "jest --coverage --config jestconfig.json"
},
"author": "nick-potts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nick-potts/ResultWire.git"
},
"bugs": {
"url": "https://github.com/nick-potts/ResultWire/issues"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"expect": "^29.7.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"tsup": "^8.2.4",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}