-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "analytics-sdk-generator",
"version": "0.0.18-b3107bf7",
"description": "Generates an SDK from an analytics descriptor file",
"main": "dist/bin/cli.js",
"author": "leprechaun",
"license": "GPL-3.0-or-later",
"bin": "bin/stub-cli.js",
"files": [
"dist",
"bin",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/leprechaun/analytics-sdk-generator.git"
},
"bugs": {
"url": "https://github.com/leprechaun/analytics-sdk-generator/issues"
},
"keywords": [
"analytics",
"validation",
"json-schema",
"segment",
"rudderstack",
"AST",
"code-generation"
],
"analytics-descriptor": {
"input": "./src/example/example-schema.yml",
"output": "./output",
"implementation": "./src/example/example-implementation"
},
"peerDependencies": {
"typescript": "^4 || ^5.0.0"
},
"devDependencies": {
"@stryker-mutator/core": "^8.0.0",
"@stryker-mutator/jest-runner": "^8.0.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"jest": "^29.0.0",
"jest-xunit": "^1.0.11",
"stryker-cli": "^1.0.2",
"ts-jest": "^29.0.0",
"ts-node": "^10.1.0",
"typescript": "^5.0.0"
},
"dependencies": {
"yaml": "^2.0.0",
"yargs": "^17.1.1"
},
"scripts": {
"test:e2e": "jest e2e/",
"test": "jest src/",
"build": "tsc --build",
"lint": "eslint ./src --ignore-pattern *.test.ts"
}
}