-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 856 Bytes
/
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
{
"name": "sketch-test-inspector",
"version": "0.0.2",
"description": "Helper utils and plugin for running unit tests on sketch plugins",
"main": "lib/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julianburr/sketch-test-inspector.git"
},
"keywords": [
"sketch",
"sketchtool",
"sketch-inspector",
"unittest"
],
"author": "Julian Burr <hello@julianburr.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/julianburr/sketch-test-inspector/issues"
},
"homepage": "https://github.com/julianburr/sketch-test-inspector#readme",
"dependencies": {
"fs-extra": "^4.0.1",
"invariant": "^2.2.2",
"path": "^0.12.7",
"sketchtool-cli": "^0.0.2",
"watch": "^1.0.2"
},
"devDependencies": {
"jest": "^20.0.4"
}
}