-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 907 Bytes
/
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
{
"name": "ts-object-transformer",
"version": "0.0.2",
"description": "",
"main": "./dist/ts-object-transformer.js",
"typings": "./dist/ts-object-transformer.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"test": "jest"
},
"author": "fcamblor <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fcamblor/ts-object-transformer.git"
},
"bugs": {
"url": "https://github.com/fcamblor/ts-object-transformer/issues"
},
"devDependencies": {
"@types/jest": "23.3.2",
"jest": "23.6.0",
"ts-jest": "23.10.3",
"typescript": "3.1.1"
},
"files": [
"dist"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"dependencies": {}
}