-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
{
"name": "json2typescript",
"version": "1.0.8",
"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",
"build:watch": "tsc -w",
"clean": "rimraf src/**/*.js src/**/*.js.map src/**/*.d.ts test/**/*.js test/**/*.js.map test/**/*.d.ts",
"dist": "npm run clean && npm run build && npm pack"
},
"typescript": {
"definition": "dist/index.d.ts"
},
"dependencies": {
"@types/node": "^8.0.27"
},
"devDependencies": {
"@types/node": "^8.0.0",
"@types/jasmine": "^2.5.52",
"jasmine": "2.6.0",
"karma": "^1.7.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "1.0.4",
"karma-typescript": "^3.0.3",
"phantomjs-prebuilt": "2.1.14",
"rimraf": "^2.6.2",
"typescript": "^2.5.2"
},
"main": "index.js",
"files": [
"src/**/*.js",
"src/**/*.js.map",
"src/**/*.d.ts",
"index.d.ts",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/dhlab-basel/json2typescript"
}
}