-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "@zeplin/cli-connect-swift-plugin",
"version": "0.1.3",
"description": "Zeplin CLI Connected Components - Swift Plugin",
"main": "./dist/index",
"scripts": {
"test": "jest",
"build": "tsc && copyfiles -u 1 src/template/** dist/",
"lint": "eslint --ext .js,.ts .",
"prepare": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zeplin/cli-connect-swift-plugin.git"
},
"bugs": {
"url": "https://github.com/zeplin/cli-connect-swift-plugin/issues"
},
"homepage": "https://github.com/zeplin/cli-connect-swift-plugin#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/pug": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"@zeplin/cli": "^1.0.4",
"@zeplin/eslint-config": "^2.2.0",
"copyfiles": "^2.1.1",
"eslint": "^6.4.0",
"eslint-import-resolver-typescript": "^2.0.0",
"husky": "^3.0.5",
"jest": "^26.1.0",
"ts-jest": "^26.1.3",
"ts-node": "^8.3.0",
"typescript": "^3.9.7"
},
"dependencies": {
"child-process-es6-promise": "^1.2.1",
"pug": "^2.0.4"
}
}