-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "marble-test",
"version": "3.1.1",
"description": "Helps you write marble tests",
"license": "MIT",
"repository": "tjoskar/marble-test",
"author": {
"name": "Oskar Karlsson",
"email": "kontakta@oskarkarlsson.nu",
"url": "http://oskarkarlsson.nu"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"test": "jest",
"preversion": "npm test",
"postversion": "make && git push && git push --tags"
},
"keywords": [
"rxjs",
"marble",
"marble-diagram",
"testning"
],
"peerDependencies": {
"rxjs": ">=6.0.0"
},
"dependencies": {
"chalk": "^2.4.2",
"easy-table": "^1.1.1",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@types/easy-table": "0.0.32",
"@types/jest": "^24.0.13",
"@types/lodash.isequal": "^4.5.5",
"@types/node": "^12.0.4",
"jest": "^24.8.0",
"rxjs": "^6.5.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/__tests__/*.ts"
]
}
}