forked from appvision-gmbh/json2typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.26 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
{
"name": "json2typescript",
"version": "1.2.3",
"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",
"dist": "npm run build && npm pack"
},
"typescript": {
"definition": "src/index.d.ts"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.3.7",
"jasmine": "3.3.1",
"karma": "^4.0.0",
"karma-jasmine": "2.0.1",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "1.0.4",
"karma-typescript": "^4.0.0",
"phantomjs-prebuilt": "^2.1.16",
"typescript": "3.3.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"
}
}