This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 3.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "cwa-app-ccl",
"version": "1.0.0",
"description": "Common Covid Logic (CCL) for Android and iOS",
"private": true,
"type": "module",
"exports": "./index.js",
"scripts": {
"build": "npm run build:clean && npm run build:ccl-configuration && npm run build:jfn-test-cases && npm run build:ccl-test-cases && npm run build:ccl-text-descriptor-test-cases && npm run test:dist && node scripts/post-process.js",
"build:clean": "rimraf dist",
"build:ccl-test-cases": "node scripts/export-ccl-test-cases.js",
"build:ccl-text-descriptor-test-cases": "node scripts/export-ccl-text-descriptor-test-cases.js",
"build:ccl-configuration": "node scripts/export-ccl-configuration.js",
"build:jfn-test-cases": "node scripts/export-jfn-test-cases.js",
"fix": "standard 'lib/**/*.js' 'test/**/*.js' 'scripts/**/*.js' --fix --verbose | snazzy",
"generate-tpn": "generate-license-file --input package.json --output THIRD-PARTY-NOTICES --overwrite",
"lint": "standard 'lib/**/*.js' 'test/**/*.js' 'scripts/**/*.js' --verbose | snazzy",
"prepare": "husky install",
"postinstall": "patch-package",
"test": "npm run test:unit",
"test:ccl": "mocha test/unit/ccl --recursive --color",
"test:dist": "mocha test/dist --recursive --color --forbid-only",
"test:jfn": "mocha test/unit/jfn --recursive --color",
"test:local-android": "node scripts/test-android.js",
"test:local-ios": "node scripts/test-ios.js",
"test:unit": "mocha test/unit --recursive --color --forbid-only",
"watch:ccl": "nodemon -w lib -w resources -w test -e 'js json yaml' --exec 'npx mocha test/unit/ccl --recursive --color'",
"watch:jfn": "nodemon -w lib -w resources -w test -e 'js json yaml' --exec 'npx mocha test/unit/jfn --recursive --color'",
"watch:unit": "nodemon -w lib -w resources -w test -e 'js json yaml' --exec 'npx mocha test/unit --recursive --color'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corona-warn-app/cwa-app-ccl.git"
},
"keywords": [],
"author": "SAP SE <[email protected]>",
"contributors": [
"Maximilian Lenkeit <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/corona-warn-app/cwa-app-ccl/issues"
},
"homepage": "https://github.com/corona-warn-app/cwa-app-ccl#readme",
"devDependencies": {
"base45": "2.0.1",
"cbor": "8.1.0",
"chai": "4.3.4",
"chalk": "4.1.2",
"chance": "1.1.8",
"cose-js": "0.8.3",
"deepmerge": "4.2.2",
"fs-extra": "10.0.0",
"generate-license-file": "1.3.0",
"got": "12.3.1",
"husky": "7.0.4",
"js-yaml": "4.1.0",
"jsonpath": "1.1.1",
"lint-staged": "12.1.7",
"mocha": "9.2.0",
"nodemon": "2.0.15",
"pako": "2.0.4",
"rimraf": "2.7.1",
"snazzy": "9.0.0",
"standard": "16.0.4",
"strip-ansi": "6.0.1",
"transliteration": "2.2.0",
"yargs": "16.2.0",
"zx": "7.1.1"
},
"dependencies": {
"async": "3.2.3",
"fast-xml-parser": "4.0.1",
"json-logic-js": "2.0.2",
"jsonschema": "1.4.0",
"moment": "2.29.4",
"patch-package": "6.4.7",
"printj": "1.3.0"
},
"lint-staged": {
"*.js": [
"standard --fix"
],
"package.json": [
"npm run generate-tpn",
"git add THIRD-PARTY-NOTICES"
]
}
}