-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "json2typescript",
"version": "1.5.1",
"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": "AppVision GmbH",
"license": "MIT",
"homepage": "https://appvision.ch",
"scripts": {
"test": "karma start karma.conf.js",
"build": "npm i && npm run test && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && 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.8.1",
"downlevel-dts": "^0.7.0",
"jasmine": "3.8.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.1",
"phantomjs-prebuilt": "^2.1.16",
"typescript": "4.3.5"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/appvision-gmbh/json2typescript"
}
}