-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 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
57
{
"name": "backstage-cli",
"version": "1.0.0-alpha.2",
"description": "The CLI companion that lets you upload builds to your Backstage Server.",
"repository": "git@github.com:BackstageJS/backstage-cli.git",
"author": "Jesse Pinho <jesse@jessepinho.com>",
"license": "MIT",
"bin": {
"backstage": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint --project .",
"postbuild": "chmod +x ./dist/index.js",
"prepublishOnly": "yarn run build",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/inquirer": "^0.0.36",
"@types/is-my-json-valid": "^0.0.20",
"@types/jest": "^22.1.2",
"@types/node": "^9.4.5",
"@types/request": "^2.47.0",
"@types/tar": "^4.0.0",
"jest": "^22.2.2",
"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"
]
},
"dependencies": {
"commander": "^2.14.1",
"inquirer": "^5.1.0",
"is-my-json-valid": "^2.17.2",
"rc": "^1.2.5",
"request": "^2.83.0",
"tar": "^4.3.3"
}
}