-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1008 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "reactive-observable",
"version": "0.0.1",
"description": "coming soon",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"sonar": "sonar-scanner -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=mrcwbr -Dsonar.projectKey=reactive-observable -Dsonar.sources=src -Dsonar.tests=tests"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"jest": "^26.6.3",
"sonarqube-scanner": "^2.8.0",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"author": "mrcwbr",
"license": "ISC",
"files": [
"dist/*",
"README.md",
"Changelog.md"
],
"repository": {
"type": "git",
"url": "https://github.com/mrcwbr/reactive-observable"
},
"keywords": [
"observable",
"subscription",
"reactive",
"observable pattern",
"javascript",
"typescript"
]
}