This repository was archived by the owner on May 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.83 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.83 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": "@w11k/rx-utils",
"version": "1.6.0",
"license": "Apache-2.0",
"author": "W11K",
"homepage": "https://github.com/w11k/rx-utils",
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"module": "./dist/es2015/index.js",
"repository": "https://github.com/w11k/rx-utils",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@phenomnomnominal/tsquery": "^3.0.0"
},
"devDependencies": {
"rxjs": "^6.3.3",
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"chai": "4.1.2",
"del-cli": "1.1.0",
"gh-pages": "^1.2.0",
"mocha": "5.0.0",
"source-map-support": "0.5.3",
"ts-node": "4.1.0",
"tslint": "^5.9.1",
"typedoc": "0.12.0",
"typescript": "^3.1.6",
"typings": "^2.1.1"
},
"peerDependencies": {
"rxjs": ">=6.0.0"
},
"scripts": {
"clean": "del-cli dist",
"build": "npm run clean ; tsc -p tsconfig.json && tsc -p tsconfig.dist.es2015.json",
"prepublishOnly": "npm test && npm run build && npm run typedoc",
"postpublish": "npm run typedoc_deploy && git push",
"test": "mocha --opts spec/mocha.opts src/**/*test.ts",
"test_tslint_prepare": "npm run clean && tsc",
"test_tslint_subscribe_takeuntil": "tslint -p tsconfig.json -t verbose -c src/tslint_rules/subscribe-takeuntil/rule.json src/tslint_rules/subscribe-takeuntil/*.ts",
"test_tslint_subscribe_in_subscribe": "tslint -p tsconfig.json -t verbose -c src/tslint_rules/subscribe-in-subscribe/rule.json src/tslint_rules/subscribe-in-subscribe/*.ts",
"test_tslint": "npm run test_tslint_prepare && npm run test_tslint_subscribe_takeuntil ; npm run test_tslint_subscribe_in_subscribe",
"typedoc": "typedoc --out doc/ src && echo \"\" > doc/.nojekyll && git add . && git commit -m 'generated typedoc'",
"typedoc_deploy": "gh-pages -t --dotfiles -d doc"
}
}