-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "@liveramp/reslang",
"version": "6.2.5",
"main": "index.js",
"license": "Apache-2.0",
"engines": {
"node": ">=12.1.0"
},
"devDependencies": {
"@types/clipboardy": "^2.0.1",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.13",
"@types/js-yaml": "^3.12.1",
"@types/open": "^6.1.0",
"@types/pegjs": "^0.10.1",
"@types/shelljs": "^0.8.5",
"@types/yargs": "^13.0.0",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"jest": "^26.6.3",
"rollup": "^2.13.1",
"ts-jest": "^26.5.5",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@asyncapi/generator": "^1.9.4",
"@types/pluralize": "^0.0.29",
"@types/tmp": "^0.1.0",
"clipboardy": "^2.0.0",
"express": "^4.17.3",
"js-yaml": "^3.13.1",
"open": "^6.3.0",
"pegjs": "^0.10.0",
"pluralize": "^8.0.0",
"redoc-cli": "^0.13.7",
"shelljs": "^0.8.5",
"tmp": "^0.1.0",
"yargs": "^13.2.4"
},
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:dist": "rollup -c && cp -r src/grammar dist && cp -r src/library dist && cp dist_run.js dist",
"build:live": "ts-node src/main.ts",
"test": "jest"
},
"prettier": {
"semi": false,
"tabWidth": 4,
"trailingComma": "none"
},
"bin": {
"reslang": "run-reslang"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "[email protected]:LiveRamp/reslang.git"
}
}