forked from shakilsiraj/json-object-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.86 KB
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": "json-object-mapper",
"version": "1.5.2",
"description": "A TypeScript library to serialize and deserialize JSON objects in a fast and non-recursive way",
"repository": {
"type": "git",
"url": "https://github.com/shakilsiraj/json-object-mapper.git"
},
"keywords": [
"JSON",
"TypeScript",
"JSON Serialize",
"JSON Deserialize",
"JsonProperty",
"DTO",
"Data Transfer Objects"
],
"author": {
"name": "Shakil Siraj",
"email": "shakil.siraj@gmail.com"
},
"main": "./dist/ObjectMapper.js",
"typings": "./dist/ObjectMapper.d.ts",
"moduleName": "ObjectMapper",
"license": "MIT",
"homepage": "https://github.com/shakilsiraj/json-object-mapper",
"scripts": {
"watch-compile": "node_modules/.bin/tsc -w -p .",
"build": "node_modules/.bin/tsc -p .",
"rollup": "./node_modules/.bin/rollup -c",
"dist": "npm run build && npm run test && npm run rollup",
"test": "node_modules/.bin/jasmine-node bin --verbose --junitreport",
"test-karma": "node_modules/.bin/karma start ./karma.conf.js",
"tslint": "tslint --project ./tsconfig.json --type-check --fix",
"lint": "npm run tslint"
},
"devDependencies": {
"@types/es6-shim": "^0.31.34",
"@types/jasmine": "~2.5.53",
"es6-shim": "~0.35.3",
"jasmine": "~2.5.2",
"jasmine-core": "~2.3.4",
"jasmine-node": "~1.14.5",
"jasmine-ts": "^0.2.0",
"karma": "~1.3.0",
"karma-chrome-launcher": "~2.0.0",
"karma-firefox-launcher": "~1.0.0",
"karma-jasmine": "~1.1.0",
"karma-requirejs": "~1.1.0",
"karma-safari-launcher": "~1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-typescript": "^3.0.4",
"process": "~0.11.9",
"reflect-metadata": "^0.1.10",
"rollup": "~0.38.3",
"rollup-plugin-typescript": "~0.8.1",
"tslint": "~5.5.0",
"typescript": "~2.4.2",
"typings": "^0.8.1"
}
}