-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
117 lines (117 loc) · 3.52 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "typewriter",
"version": "9.2.0",
"description": "A compiler for generating strongly typed analytics clients via Segment Protocols",
"repository": "ssh://[email protected]/segmentio/typewriter.git",
"author": "Oscar Bazaldua <[email protected]>",
"bin": {
"typewriter": "./bin/run"
},
"homepage": "https://github.com/segmentio/typewriter",
"bugs": "https://github.com/segmentio/typewriter/issues",
"license": "MIT",
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@npmcli/ci-detect": "^2.0.0",
"@oclif/core": "^1.7",
"@segment/analytics-node": "^1.0.0-beta.26",
"ajv": "^8.11.0",
"chalk": "^4",
"debug": "^4.3.4",
"figures": "^3",
"got": "^11",
"handlebars": "^4.7.7",
"inquirer": "^8.2.3",
"joi": "^17.6.0",
"json-stable-stringify": "^1.0.1",
"latest-version": "^5",
"lodash": "^4.17",
"node-machine-id": "^1.1.12",
"quicktype-core": "^6.0.71",
"semver": "^7.3",
"sort-keys": "^4.2.0",
"terminal-link": "^2",
"typescript": "*",
"yaml": "^2.3.1"
},
"devDependencies": {
"@oclif/test": "^2.1",
"@segment/analytics-next": "^1.51.6",
"@segment/analytics-react-native": "^2.2.1",
"@types/chai": "^4",
"@types/debug": "^4.1.7",
"@types/got": "^9.6.12",
"@types/inquirer": "^8.2.1",
"@types/jest": "^29.0.0",
"@types/json-stable-stringify": "^1.0.34",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.4",
"@types/npmcli__ci-detect": "^2.0.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"chai": "^4",
"copyfiles": "^2.4.1",
"eslint": "^8.0.1",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-config-twilio": "^2.0.0",
"eslint-config-twilio-ts": "^2.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"globby": "^11",
"jest": "^28",
"mocha": "^9",
"oclif": "^3.0",
"shx": "^0.3",
"stdout-stderr": "^0.1.13",
"ts-jest": "^28",
"ts-node": "^10.7",
"tslib": "^2.4"
},
"oclif": {
"bin": "typewriter",
"dirname": "typewriter",
"commands": "./dist/commands",
"default": "start",
"plugins": [],
"helpClass": "./dist/help",
"description": "A compiler for generating strongly typed analytics clients via Segment Protocols",
"hooks": {
"init": [
"./dist/hooks/prerun/load-languages"
],
"postrun": "./dist/hooks/postrun/telemetry"
}
},
"scripts": {
"build": "shx rm -rf dist && npm run build:typedef-test-artifacts && tsc && copyfiles --up 1 \"src/**/*.hbs\" dist && npm run build:telemetry",
"build:telemetry": "./bin/run -m=prod",
"build:typedef-test-artifacts": "ts-node src/__tests__/ts-typedef-tests/run-build.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "yarn test:typedef && jest --runInBand",
"test:typedef": "npm run build:typedef-test-artifacts && ts-node src/__tests__/ts-typedef-tests/run-test.ts",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=18"
},
"keywords": [
"oclif",
"segment",
"analytics"
],
"types": "dist/index.d.ts"
}