forked from greg9504/ts-json-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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": "ts-json-serializer",
"version": "1.2.4",
"description": "Object serialization made easy with decorators.",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"clean": "del build coverage",
"pretest": "npm run clean && tsc -p ./tsconfig/test.json",
"test": "istanbul cover -x \"**/*.spec.*\" _mocha --report lcovonly -- --ui bdd \"./build/test/**/*.spec.js\"",
"posttest": "remap-istanbul -i coverage/coverage.json -o coverage/lcov-mapped.info -t lcovonly",
"predevelop": "npm run clean",
"develop": "tsc -p .",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig/build.json",
"prepack": "npm install; tsc -p ./tsconfig/build.json"
},
"keywords": [
"typescript",
"serialization",
"deserialization",
"decorators",
"json"
],
"author": "Christoph Bühler <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/buehler/ts-json-serializer.git"
},
"bugs": {
"url": "https://github.com/buehler/ts-json-serializer/issues"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/reflect-metadata": "0.0.5",
"chai": "^3.5.0",
"del-cli": "^0.2.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"remap-istanbul": "^0.9.1",
"tslint": "^4.4.2",
"tslint-jsdoc-rules": "^0.1.2",
"typescript": "^2.1.6",
"tslib": "^1.5.0"
},
"dependencies": {
"reflect-metadata": "^0.1.9"
}
}