-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "ng112-js",
"version": "2.0.0-beta.4",
"license": "AGPL-3.0-only",
"author": "Gabriel Unterholzer <gabriel.unterholzer@dec112.at> (https://www.dec112.at)",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"types": "dist/main/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git@github.com:dec112/ng112-js.git"
},
"scripts": {
"start": "tsc --watch",
"build": "npm run build:main && npm run build:module",
"build:main": "tsc --module commonjs --outDir ./dist/main",
"build:module": "tsc --module esnext --outDir ./dist/module",
"docs": "typedoc",
"docs-deploy": "node scripts/docs.deploy.js",
"test": "sh ./scripts/test.sh",
"test:start-env": "sh ./scripts/start-test-env.sh",
"test:stop-env": "sh ./scripts/stop-test-env.sh",
"test:jest": "npm run build && NODE_ENV=development jest",
"prepublishOnly": "NODE_ENV=production npm run docs-deploy && npm run build"
},
"devDependencies": {
"@dec112/cap-ts": "^0.3.1",
"@types/find-root": "^1.1.2",
"@types/jest": "^29.5.0",
"@xmldom/xmldom": "^0.8.7",
"find-root": "^1.1.0",
"jest": "^29.5.0",
"jssip": "^3.7.5",
"ng112-js-sip-adapter-jssip": "^0.6.4",
"ng112-js-sip-adapter-sipjs": "^0.5.2",
"sip.js": "^0.20.0",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typedoc": "^0.25.2",
"typedoc-plugin-missing-exports": "^2.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@xstate/fsm": "^1.6.5",
"pidf-lo": "^1.0.2",
"vcard-xml": "^1.0.0"
},
"keywords": [
"emergency",
"911",
"112",
"ng911",
"ng112",
"dec112"
]
}