-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
101 lines (101 loc) · 2.7 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@zeplin/cli",
"version": "2.0.2",
"description": "Zeplin CLI",
"main": "./dist/src/index.js",
"types": "./dist/types/index",
"bin": {
"zeplin": "bin/cli.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"test": "jest",
"build:dev": "tsc --sourceMap",
"build": "tsc && npm run prepare-api",
"build:clean": "rm -rf dist/ && npm run build",
"lint": "eslint --ext .js,.ts .",
"prepare": "npm run build:clean",
"prepare-api": "api-extractor run"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zeplin/cli.git"
},
"bugs": {
"url": "https://github.com/zeplin/cli/issues"
},
"homepage": "https://github.com/zeplin/cli#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.31.1",
"@types/ci-info": "^2.0.0",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.0",
"@types/git-url-parse": "^9.0.1",
"@types/hapi__joi": "^17.1.4",
"@types/inquirer": "^6.5.0",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.3.4",
"@types/node": "^12.7.5",
"@types/parse-git-config": "^3.0.0",
"@types/semver": "^7.3.4",
"@types/strip-comments": "^2.0.0",
"@types/update-notifier": "^4.1.0",
"@types/url-join": "^4.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"@zeplin/eslint-config": "^2.2.0",
"eslint": "^6.4.0",
"eslint-import-resolver-typescript": "^1.1.1",
"husky": "^4.2.5",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.21.4",
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"ci-info": "^2.0.0",
"commander": "^6.2.0",
"cosmiconfig": "^7.0.0",
"detect-package-manager": "^3.0.1",
"execa": "^5.0.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"git-url-parse": "^13.1.0",
"has-yarn": "^2.1.0",
"http-status-codes": "^1.4.0",
"import-from": "^3.0.0",
"import-local": "^3.0.2",
"inquirer": "^7.0.0",
"inquirer-fuzzy-path": "^2.3.0",
"inquirer-search-checkbox": "^1.0.0",
"inquirer-search-list": "^1.2.6",
"is-installed-globally": "^0.3.2",
"is-yarn-global": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"latest-version": "^5.1.0",
"mask-json": "^1.0.3",
"open": "^7.3.0",
"ora": "^5.1.0",
"parse-git-config": "^3.0.0",
"semver": "^5.7.1",
"strip-ansi": "^6.0.0",
"strip-comments": "^2.0.1",
"ts-dedent": "^1.1.0",
"update-notifier": "^5.1.0",
"url-join": "^4.0.1",
"winston": "^3.2.1"
}
}