-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 709 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 709 Bytes
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
{
"name": "csharp-models-to-typescript",
"version": "1.2.0",
"title": "C# models to TypeScript",
"author": "Jonathan Svenheden <jonathan@svenheden.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/svenheden/csharp-models-to-typescript.git"
},
"engines": {
"node": ">=6.0.0"
},
"bin": {
"csharp-models-to-typescript": "./index.js"
},
"scripts": {
"test": "rimraf -I ./test-files/api.d.ts && node index.js --config=./test-files/test-config.json && node ./test-files/test-file-exists.js --config=./test-files/test-config.json"
},
"dependencies": {
"camelcase": "^6.0.0"
},
"devDependencies": {
"rimraf": "^5.0.7"
}
}