forked from pimatic/pimatic-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 649 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 649 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
{ "name": "pimatic-plugin-template",
"description": "The plugin description",
"author": "Your Name <you@example.com> (http://your-website)",
"main": "my-plugin",
"files": [
"my-plugin.coffee",
"README.md",
"my-plugin-config-schema.coffee"
],
"version": "0.8.0",
"homepage": "http://your-plugin-website",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/pimatic/pimatic-plugin-template.git"
},
"configSchema": "my-plugin-config-schema.coffee",
"dependencies": {
},
"peerDependencies": {
"pimatic": "0.8.*"
},
"engines": {
"node": ">0.8.x",
"npm": ">1.1.x"
}
}