-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "swirly-diagram-testrunner",
"version": "0.3.1",
"description": "Testrunner that runs observables and prepares diagram generation for swirly",
"main": "dist/esm2015/index.js",
"files": [
"dist/**",
"README.md",
"LICENSE"
],
"scripts": {
"test": "TS_NODE_CACHE=false && mocha --opts spec/mocha.opts src/**/*test.ts",
"clean": "del-cli dist",
"build": "npm run clean ; tsc -p tsconfig.json && tsc -p tsconfig.dist.esm5.json && tsc -p tsconfig.dist.esm2015.json"
},
"author": "Sascha Engmann",
"homepage": "https://github.com/sengmann/swirly-diagram-testrunner#swirly-diagram-testrunner",
"repository": {
"type": "git",
"url": "https://github.com/sengmann/swirly-diagram-testrunner"
},
"license": "Apache-2.0",
"keywords": [
"RxJS",
"Swirly",
"marbles",
"diagram"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.157",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.22",
"chai": "^4.2.0",
"del-cli": "^3.0.1",
"mocha": "^7.2.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"peerDependencies": {
"@swirly/parser": "^0.15.2",
"@swirly/renderer-node": "^0.15.2",
"@swirly/theme-default-light": "^0.15.2",
"@swirly/types": "^0.15.2",
"rxjs": "^6.6.0"
}
}