-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.28 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": "backstage-server",
"version": "1.0.0-alpha.4",
"description": "Simple hosting for multiple versions of your static sites.",
"repository": "git@github.com:BackstageJS/backstage-server.git",
"author": "Jesse Pinho <jesse@jessepinho.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint --project .",
"prepublishOnly": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"multer": "^1.3.0",
"rimraf": "^2.6.2",
"tar": "^4.3.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.11.1",
"@types/jest": "^22.1.1",
"@types/multer": "^1.3.6",
"@types/rimraf": "^2.0.2",
"@types/tar": "^4.0.0",
"jest": "^22.2.1",
"node-mocks-http": "^1.6.6",
"ts-jest": "^22.0.3",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}