-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.63 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": "observable-profiler",
"version": "0.1.1",
"description": "Tracks new & disposed Observable subscriptions",
"main": "./dist/index.js",
"module": "./dist/_esm5/index.js",
"es2015": "./dist/_esm2015/index.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"dist/**/*"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"rxjs": "^6.4.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.2"
},
"peerDependencies": {
"rxjs": ">=5.0.0"
},
"scripts": {
"test": "jest --watch",
"test:ci": "jest",
"lint": "eslint --ext .ts .",
"build:cjs": "tsc -b builds/tsconfig.cjs.json",
"build:esm5": "tsc -b builds/tsconfig.esm5.json",
"build:esm2015": "tsc -b builds/tsconfig.esm2015.json",
"build:typings": "tsc -b builds/tsconfig.typings.json",
"build": "npm run build:cjs && npm run build:esm5 && npm run build:esm2015 && npm run build:typings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awerlang/observable-profiler.git"
},
"keywords": [
"observable",
"rxjs",
"profiler"
],
"author": "André Werlang",
"license": "MIT",
"bugs": {
"url": "https://github.com/awerlang/observable-profiler/issues"
},
"homepage": "https://github.com/awerlang/observable-profiler#readme"
}