-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.15 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.15 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
{
"name": "ts-setup",
"version": "0.1.0",
"description": "OPDIME TypeScript setup.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watchAll",
"build": "tsc",
"build-watch": "tsc --watch",
"lint": "tslint --project .",
"start": "nodemon",
"prepublish": "npm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OPDIME/ts-setup.git"
},
"keywords": [
"Setup"
],
"author": "Jörn Neumeyer",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/OPDIME/ts-setup/issues"
},
"jest": {
"roots": [
"./src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"homepage": "https://github.com/OPDIME/ts-setup#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^23.1.1",
"@types/node": "^10.3.4",
"jest": "^23.1.0",
"nodemon": "^1.17.5",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
}
}