-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 961 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
44
45
46
47
{
"name": "kurkar",
"version": "0.1.3",
"description": "Ava macros to test RxJS, with TypeScript support",
"main": "dist/marbles.js",
"types": "dist/marbles.d.ts",
"files": [
"/dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "ava dist/test/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binaris/kurkar.git"
},
"keywords": [
"Rx",
"RxJS",
"marbles",
"ava",
"macro",
"testing",
"observable",
"typescript"
],
"author": "Ariel Shaqed (Scolnicov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/binaris/kurkar/issues"
},
"homepage": "https://github.com/binaris/kurkar#readme",
"peerDependencies": {
"ava": "^1.0.0",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@types/node": "^12.12.8",
"ava": "^3.6.0",
"rxjs": "^6.5.3",
"typescript": "^3.7.2"
}
}