-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 914 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
{
"name": "comment-editor-for-trello-power-up",
"version": "1.0.0",
"description": "Comment Editor by AJ: a Trello Power-Up that allows you to edit card comments using an Outliner.",
"homepage": "https://adrienjoly.com/comment-editor-for-trello",
"main": "server/server.js",
"scripts": {
"ssl": "node_modules/.bin/local-ssl-proxy --source 9000 --target 8080",
"watch": "PORT=8080 onchange '**/*.js' '**/*.html' -i -- npm start",
"start": "PORT=8080 node server/server.js"
},
"engines": {
"node": "8.1.x"
},
"repository": {
"url": "https://github.com/adrienjoly/comment-editor-for-trello"
},
"author": "Adrien Joly",
"license": "MIT",
"keywords": [
"trello",
"productivity",
"add-on",
"editor",
"outliner"
],
"devDependencies": {
"compression": "1.6.2",
"cors": "^2.8.1",
"express": "4.14.0",
"local-ssl-proxy": "^1.3.0"
}
}