forked from philgresh/cap-ts-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.46 KB
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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@dec112/cap-ts",
"description": "Common Alerting Protocol (CAP) (ITU X.1303) Library in TypeScript",
"version": "0.3.3",
"license": "MIT",
"main": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"exports": {
".": "./dist/node/index.js",
"./builder": "./dist/node/builder.js"
},
"scripts": {
"benchmark": "node ./test/benchmark.js",
"breaking-update": "npx ncu -u && npm install",
"build": "npx tsc && npx webpack",
"build-node": "npx tsc",
"build-web": "npx webpack",
"clean": "rm -rf dist; mkdir -p dist",
"lint": "npx eslint --config .eslintrc.yml './source/**/*.ts' || true",
"prettify": "npx prettier './source/**/*.ts' --write",
"test": "npx jest --ci --reporters=default --reporters=jest-junit --coverage",
"test:watch": "npx jest --watch",
"prepublishOnly": "npm run build"
},
"bugs": {
"email": "gabriel.unterholzer@dec112.at"
},
"contributors": [
{
"email": "jonathan@wilbur.space",
"name": "Jonathan M. Wilbur",
"url": "https://github.com/JonathanWilbur"
},
{
"email": "gabriel.unterholzer@dec112.at",
"name": "Gabriel Unterholzer",
"url": "https://www.dec112.at"
}
],
"dependencies": {
"asn1-ts": "^3.3.1",
"xml2js": "^0.6.2",
"xmlbuilder2": "^2.1.6"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/benchmark": "^1.0.33",
"@types/node": "^14.0.20",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-jest": "^30.0.5",
"benchmark": "^2.1.4",
"eslint": "^7.4.0",
"jest": "^30.0.5",
"jest-junit": "^16.0.0",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^1.1.1",
"ts-loader": "^8.4.0",
"typescript": "^4.9.5",
"webpack": "^4.47.0",
"webpack-cli": "^4.10.0"
},
"directories": {
"doc": "documentation",
"test": "test"
},
"files": [
"dist/node/**/*"
],
"keywords": [
"CAP",
"Alerts",
"X1303",
"X.1303"
]
}