-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "@pubsub-a/tests",
"version": "0.2.1",
"description": "PubSub/A spec test suite",
"license": "UNLICENSED",
"devDependencies": {
"@pubsub-a/interfaces": "^0.7.7",
"@pubsub-a/micro": "^0.9.6",
"@types/chai": "^4.2.7",
"@types/mocha": "^8.0.4",
"@types/node": "^13.1.1",
"chai": "^4.2.0",
"es6-promise": "^4.2.4",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^2.0.1",
"mocha": "^8.2.1",
"rxjs": "^6.1.0",
"typescript": "^3.7.4",
"webpack": "^3.5.6"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"bundle": "webpack",
"node-tests": "mocha --timeout 5000 tests/test.js",
"browser-tests": "karma start",
"test": "npm run build && npm run bundle && npm run node-tests && npm run browser-tests"
},
"dependencies": {
"@dynalon/pubsub-a-server-node": "^0.7.1",
"ipterate": "^1.1.1",
"lodash": "^4.17.10"
}
}