-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "rx-priority-queue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint -c .eslintrc.js 'projects/demo-app/**/*.ts' --fix",
"prettier": "prettier --config .prettierrc.json --write src/**/*.ts"
},
"author": "“Vlad <“[email protected]”>",
"license": "ISC",
"dependencies": {
"rxjs": "^6.5.5"
},
"devDependencies": {
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@typescript-eslint/eslint-plugin": "~2.28.0",
"@typescript-eslint/eslint-plugin-tslint": "~2.28.0",
"@typescript-eslint/parser": "~2.28.0",
"codelyzer": "~5.0.0",
"commitizen": "~4.0.4",
"conventional-changelog-cli": "~2.0.31",
"coveralls": "~3.0.13",
"cz-conventional-changelog": "~3.1.0",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.1",
"eslint-plugin-prettier": "~3.1.3",
"husky": "^4.2.5",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "~1.4.0",
"karma-mocha-reporter": "~2.2.5",
"lint-staged": "^10.1.7",
"ng-packagr": "^5.3.0",
"prettier": "^2.0.5",
"protractor": "~5.4.0",
"standard-version": "~7.1.0",
"ts-node": "~7.0.0",
"tsickle": "^0.36.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --config ./lint-staged.config.js"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}