-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 942 Bytes
/
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
{
"name": "rxjs-examples",
"version": "1.0.0",
"description": "Examples for RxJS",
"repository": "https://github.com/pchorus/rxjs-examples.git",
"main": "index.js",
"scripts": {
"test": "karma start",
"prettier": "prettier --write \"./src/**/*.{html,ts,js,json}\" \"./*.{html,ts,js,json}\" && prettier --write --parser json \"./{.htmllintrc,.prettierrc}\"",
"prettier-check": "prettier --check \"./src/**/*.{html,ts,js,json}\" \"./*.{html,ts,js,json}\" && prettier --check --parser json \"./{.htmllintrc,.prettierrc}\""
},
"author": "",
"license": "ISC",
"dependencies": {
"rxjs": "^7.8.0"
},
"devDependencies": {
"@types/jasmine": "^4.3.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-typescript": "^5.5.3",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
}
}