-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 loc) · 1.61 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
{
"name": "zem",
"version": "1.3.1",
"description": "Create, test and publish Zeplin extensions with no build configuration",
"homepage": "https://zeplin.io",
"keywords": [
"zeplin",
"zeplin-extension",
"extension"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zeplin/zem.git"
},
"engines": {
"node": ">=8"
},
"bin": {
"zem": "./src/index.js"
},
"files": [
"src"
],
"scripts": {
"lint": "eslint ./src"
},
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@types/jest": "^25.1.2",
"@zeplin/extension-model": "^2.11.0",
"adm-zip": "^0.4.11",
"ajv": "^6.12.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"case": "^1.6.2",
"chalk": "^2.3.1",
"ci-info": "^2.0.0",
"commander": "^2.14.1",
"core-js": "^3.6.4",
"eslint": "^4.18.1",
"eslint-loader": "^2.0.0",
"fs-extra": "^5.0.0",
"http-status-codes": "^1.4.0",
"jest": "^25.1.0",
"jsonwebtoken": "^8.3.0",
"prismjs": "^1.11.0",
"prompts": "^2.3.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"update-notifier": "^4.0.0",
"webpack": "^4.41.5",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.1.2"
},
"devDependencies": {
"@types/fs-extra": "^5.0.0",
"@zeplin/eslint-config": "^1.2.2",
"npm-merge-driver-install": "^1.1.1"
},
"eslintConfig": {
"extends": "@zeplin/eslint-config/node",
"rules": {
"no-process-exit": "off",
"no-sync": "off"
}
},
"eslintIgnore": [
"src/template/*"
]
}