-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "sketch-measure-cli",
"version": "2.2.1",
"description": "Cli tool for sketch-measure plugin",
"main": "src/index.js",
"bin": {
"sketch-measure": "bin/index.js"
},
"dependencies": {
"commander": "^3.0.2",
"debug": "^4.1.0",
"mkdirp": "^0.5.1",
"tempfile": "^3.0.0",
"unzipper": "^0.10.5"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2"
},
"scripts": {
"lint": "eslint src bin test --fix",
"test": "mocha test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devsigners/sketch-measure-cli.git"
},
"keywords": [
"sketch-measure",
"sketch"
],
"author": "creeperyang",
"license": "MIT",
"bugs": {
"url": "https://github.com/devsigners/sketch-measure-cli/issues"
},
"homepage": "https://github.com/devsigners/sketch-measure-cli#readme"
}