-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "sketch-find-and-replace",
"description": "find-and-replace Plugin for sketch",
"version": "2.12.2",
"engines": {
"sketch": ">=3.0"
},
"homepage": "https://github.com/thierryc/Sketch-Find-And-Replace",
"repository": {
"type": "git",
"url": "https://github.com/thierryc/Sketch-Find-And-Replace.git"
},
"bugs": {
"url": "https://github.com/thierryc/Sketch-Find-And-Replace/issues"
},
"skpm": {
"name": "Find-And-Replace",
"manifest": "src/manifest.json",
"main": "Find-and-replace.sketchplugin",
"assets": [
"assets/**/*"
]
},
"resources": [
"./ressources/index.js"
],
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"publish": "skpm publish",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "^0.7.11",
"@skpm/extract-loader": "^2.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^4.1.0",
"html-loader": "^0.5.5",
"skpm": "^1.3.2"
},
"author": "Thierry Charbonnel <[email protected]>",
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sketch-module-web-view": "^3.5.1",
"styled-components": "^4.4.1"
}
}