-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "G.O.A.T.",
"version": "1.0.5",
"repository": "https://github.com/thebritican/goat",
"description": "Graphic Ornamentation and Annotation Tool",
"author": "[email protected]",
"license": "MIT",
"config": {
"port": "4567"
},
"scripts": {
"start": "zendency development",
"dev": "(cpx \"./docs/{elm.js,index.js,index.css}\" zendesk-app/ --watch &) && elm-live src/Main.elm --output=docs/elm.js --debug --open",
"bundle": "elm-make src/Main.elm --output=elm.js && uglifyjs -c -m -o elm.js elm.js && zendency bundle $1",
"test": "elm-test"
},
"main": "./zendesk-app",
"compiler": [],
"directories": {
"translations": "./translations"
},
"files": [
"./docs/images/logo.png",
"./docs/images/logo-small.png",
"./docs/images/screenshot-0.png",
"./docs/images/screenshot-1.png",
"./docs/images/screenshot-2.png",
"./docs/images/icon_ticket_editor.svg",
"./elm.js",
"./zendesk-app/index.html",
"./docs/index.js",
"./docs/style.css"
],
"devDependencies": {
"cpx": "^1.5.0",
"zendency": "zendesklabs/zendency#v3.3.0"
}
}