-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@fonoster/seet",
"version": "1.2.1",
"author": "Fonoster Inc.",
"description": "End to end testing for SIP Signaling",
"license": "MIT",
"scripts": {
"build": "tsc -b tsconfig.json",
"test": "cross-env SCENARIOS=$(pwd)/seet_example.json NODE_ENV=dev nyc --reporter=lcov mocha --slow 50000 --timeout 1500000 src/seet",
"lint": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"prepare": "husky install"
},
"bin": {
"seet": ".scripts/seet.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psanders/seet.git"
},
"keywords": [
"testing",
"signaling",
"sip",
"routr"
],
"bugs": {
"url": "https://github.com/psanders/seet/issues"
},
"homepage": "https://github.com/psanders/seet#readme",
"dependencies": {
"@fonoster/logger": "^0.3.6-alpha.16",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"esm": "^3.2.25",
"glob": "^8.0.3",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"sipp-js": "^0.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.1.5"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/glob": "^7.2.0",
"@types/mocha": "^8.2.3",
"@types/node": "^17.0.23",
"@types/semver": "^7.5.2",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.40.0",
"cross-env": "^7.0.2",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^8.0.1",
"prettier-standard": "^13.0.6"
}
}