-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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": "webphone-lib-stub",
"version": "0.2.14-beta.3",
"description": "Webphone Lib Stub",
"author": "Open VoIP Alliance",
"license": "MIT",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -fR dist/* build/*",
"build": "npm run clean && rollup -c",
"typecheck": "tsc",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "npm run lint && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"nyc": {
"require": [
"ts-node/register"
],
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true,
"include": [
"src/**/*.ts"
]
},
"repository": {
"type": "git",
"url": "[email protected]:open-voip-alliance/WebphoneLibStub.git"
},
"files": [
"src",
"dist",
"README.md"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/events": "^3.0.0",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^2.7.0",
"base": "^0.13.2",
"browser-env": "^3.2.6",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"fast-check": "^1.17.0",
"husky": "^3.0.8",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rollup": "^1.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}