forked from JonathanWilbur/cap-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
69
70
71
{
"bugs": {
"email": "jonathan@wilbur.space"
},
"contributors": [
{
"email": "jonathan@wilbur.space",
"name": "Jonathan M. Wilbur",
"url": "https://github.com/JonathanWilbur"
}
],
"description": "Common Alerting Protocol (CAP) (ITU X.1303) Library in TypeScript",
"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": "^26.1.0",
"benchmark": "^2.1.4",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"jest-junit": "^11.0.1",
"npm-check-updates": "^7.0.1",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^1.1.1",
"sloc": "^0.2.1",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"directories": {
"doc": "documentation",
"test": "test"
},
"files": [
"dist/node/**/*"
],
"keywords": [
"CAP",
"Alerts",
"X1303",
"X.1303"
],
"license": "MIT",
"main": "./dist/node/index.js",
"name": "cap-ts",
"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",
"line-count": "npx sloc source",
"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"
},
"types": "./dist/node/index.d.ts",
"version": "0.2.0",
"dependencies": {
"asn1-ts": "^3.3.1",
"xml2js": "^0.4.23",
"xmlbuilder2": "^2.1.6"
}
}