-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.3 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
{
"name": "map-modules",
"version": "0.1.0",
"description": "Expanded ASN.1 modules for Mobile Application Part (MAP) (3GPP TS 29.002) in JSON format",
"keywords": [
"ss7",
"tcap",
"map",
"asn.1",
"3gpp",
"29.002",
"json"
],
"main": "convert.js",
"dependencies": {},
"devDependencies": {
"asn1exp": "0.1.1",
"get-stdin": "^5.0.1",
"minimist": "^1.2.0"
},
"scripts": {
"convert": "cd 29002-f30\\ ASN1 && for file in *Operations.EXP; do node ../convert \"$file\" > \"../dist/$file.json\" ; done",
"convert-min": "cd 29002-f30\\ ASN1 && for file in *Operations.EXP; do node ../convert \"$file\" --min > \"../dist/$file.min.json\" ; done",
"convert-errors": "cd 29002-f30\\ ASN1 && for file in *Errors.EXP; do node ../convert \"$file\" > \"../dist/$file.json\" ; done",
"convert-errors-min": "cd 29002-f30\\ ASN1 && for file in *Errors.EXP; do node ../convert \"$file\" --min > \"../dist/$file.min.json\" ; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atesgoral/map-modules.git"
},
"author": "Ates Goral <ates@magnetiq.com> (http://magnetiq.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/atesgoral/map-modules/issues"
},
"homepage": "https://github.com/atesgoral/map-modules#readme"
}