-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "abortable-rx",
"description": "Drop-in replacements for RxJS Observable methods and operators that work with AbortSignal",
"keywords": [
"rx",
"rxjs",
"reactive",
"AbortSignal",
"AbortController",
"cancel",
"Promise",
"async",
"fetch"
],
"version": "0.0.0-development",
"license": "MIT",
"author": "Felix Becker <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/abortable-rx.git"
},
"sideEffects": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"docs"
],
"scripts": {
"build": "tsc -p .",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --require ts-node/register mocha \"src/*.test.ts\"",
"prettier": "prettier '**/{*.{js?(on),ts,yml},.*.js?(on),.*.yml}' --write --list-different",
"tslint": "tslint -t stylish -c tslint.json -p tsconfig.json './src/*.ts'",
"typedoc": "typedoc --out docs --readme none --excludeExternals --tsconfig tsconfig.typedoc.json --mode file --theme minimal"
},
"release": {
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
}
]
},
"prepare": {
"path": "@semantic-release/exec",
"cmd": "npm run typedoc"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
]
},
"dependencies": {
"rxjs": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@semantic-release/exec": "^3.1.1",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.2",
"@types/sinon": "^5.0.1",
"abort-controller": "^1.0.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nyc": "^13.0.0",
"prettier": "^1.14.2",
"semantic-release": "^15.9.9",
"sinon": "^6.1.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.12.0",
"typescript": "^3.0.1"
}
}