-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "behavior-subject-entities",
"version": "2.0.4",
"description": "A helper class for dealing with BehaviorSubjects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [
"angular",
"behavior subject",
"typescript"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^13.11.1",
"codelyzer": "^6.0.1",
"eslint": "^7.10.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"gts": "^2.0.2",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"dependencies": {
"rxjs": "^6.5.3"
}
}