-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 911 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 911 Bytes
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
{
"name": "sketch-to-code",
"description": "",
"version": "0.1.0",
"scripts": {
"test": "jest -u",
"build": "skpm-build ",
"watch": "skpm-build --watch & tsc --watch",
"start": "skpm-build --watch --run"
},
"engines": {
"sketch": ">=49.0"
},
"skpm": {
"name": "sketch-to-code",
"manifest": "manifest.json",
"main": "sketch-to-code.sketchplugin",
"assets": [
"assets/**/*"
],
"sketch-assets-file": "sketch-assets/icons.sketch"
},
"dependencies": {
"@skpm/fs": "^0.2.5"
},
"devDependencies": {
"@babel/preset-typescript": "^7.6.0",
"@imgcook/dsl-helper": "^0.0.1-alpha.0",
"@skpm/builder": "^0.7.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.18",
"@types/uuid": "^3.4.5",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2",
"uuid": "^3.3.3"
}
}