-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"name": "tserialize",
"version": "1.9.2",
"description": "TypeScript serialize utils",
"types": "index.d.ts",
"typescript": {
"definition": "index.d.ts"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"lint-code": "node_modules/.bin/tslint -c ./tslint.json -p ./tsconfig.json --type-check",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoEasy/tserialize.git"
},
"keywords": [
"serialize",
"mapper",
"decorators",
"deserialize",
"typescript"
],
"author": "Vladimir Sannikov",
"license": "MIT",
"bugs": {
"url": "https://github.com/SoEasy/tserialize/issues"
},
"homepage": "https://github.com/SoEasy/tserialize#readme",
"devDependencies": {
"dts-bundle": "0.7.2",
"jest": "22.4.3",
"jest-environment-node-debug": "^2.0.0",
"nyc": "11.2.1",
"ts-loader": "2.3.2",
"ts-node": "3.3.0",
"tslint": "5.3.2",
"typescript": "2.6.2",
"webpack": "2.6.1"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.ts$": "./test-preprocessor.js"
},
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": "test/.+/.+\\.ts"
}
}