-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 975 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
36
37
{
"name": "sketch-data-faker",
"version": "0.8.0",
"description": "A Sketch plugin providing 130+ types of smart placeholder content for your mockups from Faker.js and other sources.",
"engines": {
"sketch": ">=3.0"
},
"author": "Paul Wright",
"homepage": "https://sketchfaker.com",
"identifier": "com.paintedbicycle.sketch.sketchfaker",
"appcast": ".appcast.xml",
"icon": "icon.png",
"skpm": {
"name": "Sketch Data Faker",
"manifest": "src/manifest.json",
"main": "sketch-data-faker.sketchplugin",
"assets": [
"assets/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/paintedbicycle/sketch-data-faker.git"
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "0.7.11"
},
"dependencies": {
"faker": "5.2.0"
}
}