-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "Sketch-Icons",
"version": "5.0.1",
"identifier": "sketch.icons.plugin",
"description": "Import your icons, apply a color mask and create a dynamic icons library.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AMoreaux/Sketch-Icons"
},
"engines": {
"sketch": ">=47.0"
},
"skpm": {
"name": "Sketch-Icons",
"manifest": "src/manifest.json",
"main": "Sketch-Icons.sketchplugin",
"title": "Sketch Icons",
"assets": [
"resources/script.js"
]
},
"resources": [
"resources/script.js"
],
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0-beta.47",
"@skpm/babel-preset": "^0.2.2",
"@skpm/builder": "^0.7.7",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-uglify": "^1.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.6.0",
"lodash.merge": "^4.6.0"
},
"dependencies": {
"react": "^16.2.0",
"react-color": "^2.13.8",
"react-dom": "^16.2.0"
}
}