forked from appvision-gmbh/json2typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "json2typescript",
"version": "1.4.2",
"description": "Provides TypeScript methods to map a JSON object to a JavaScript object on runtime",
"keywords": [
"convert",
"json",
"to",
"typescript",
"javascript",
"map",
"mapper",
"mapping",
"json2typescript",
"jsonconvert",
"class",
"object",
"instance"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "http://dhlab.unibas.ch",
"scripts": {
"test": "karma start karma.conf.js",
"build": "npm run test && tsc && npx downlevel-dts . ts3.4 && cp -r ts3.4/* . && rm -r ts3.4",
"dist": "npm run build && npm pack"
},
"typescript": {
"definition": "src/index.d.ts"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.5.10",
"downlevel-dts": "^0.4.0",
"jasmine": "3.5.0",
"karma": "^5.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "3.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.0.2",
"phantomjs-prebuilt": "^2.1.16",
"typescript": "3.8.3"
},
"main": "index.js",
"files": [
"src/json2typescript/*.d.ts",
"src/json2typescript/*.map",
"src/json2typescript/*.js",
"index.d.ts",
"index.js.map",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/dhlab-basel/json2typescript"
}
}