-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "replicated-studio",
"author": "Replicated, Inc.",
"version": "0.7.12",
"license": "Apache-2.0",
"repository": "https://github.com/replicatedhq/replicated-studio.git",
"description": "A tool to enable easier iteration on Replicated projects",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/",
"bin/"
],
"scripts": {
"prepublish": "rm -rf ./dist && yarn run tslint && tsc -p .",
"tslint": "tslint --project ./tsconfig.json",
"test": "yarn run prepublish && mocha ./dist/test/*.js",
"login-cli": "npm-cli-login",
"publish-if-version-changed": "publish"
},
"bin": "bin/replicated-studio",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/node": "^8.0.57",
"@types/tv4": "^1.2.28",
"chai": "3.5.0",
"mocha": "^3.2.0",
"publish": "^0.6.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"dependencies": {
"body-parser": "^1.17.0",
"chalk": "^1.1.3",
"cors": "^2.8.1",
"express": "^4.15.0",
"express-http-proxy": "^0.11.0",
"js-yaml": "^3.8.2",
"lodash": "^4.17.4",
"npm-cli-login": "^0.0.10",
"replicated-lint": "^0.18.9",
"source-map-support": "^0.4.11",
"uuid": "^3.0.1"
}
}