-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.33 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.33 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "mjs-authoring",
"version": "0.0.1",
"description": "Electron Application for building and creating maps based on mjs-plugin",
"author": {
"name": "Michael Duve",
"email": "mduve@designmail.net",
"url": "https://github.com/dazlious"
},
"email": "info@mappedjs.de",
"homepage": "http://mappedJS.de",
"main": "src/main.js",
"engines": {
"node": "6.2.1",
"npm": "3.9.3"
},
"repository": {
"type": "git",
"url": "git://github.com/MappedJS/mjs-authoring.git"
},
"keywords": [
"map",
"authoring",
"creation"
],
"license": "BSD-2-Clause",
"watch": {
"test": "{css}/*.css"
},
"scripts": {
"install": "sudo pip install --upgrade pip && sudo pip install Pillow && napa bgrins/filereader.js",
"start": "./node_modules/.bin/electron src/main.js",
"start:debug": "npm run start -- debug",
"dist": "npm run dist:osx && npm run dist:linux && npm run dist:win64",
"dist:osx": "build --platform darwin",
"dist:linux": "build --platform linux",
"dist:win64": "build --platform win32 --arch x64",
"css": "sass src/scss/main.scss:src/css/main.css --style compressed",
"change": "npm run css && npm run autoprefixer",
"watch": "node_modules/.bin/watch 'npm run change' src/scss/",
"autoprefixer": "./node_modules/.bin/postcss --use autoprefixer --autoprefixer.browsers 'last 2 Chrome versions' src/css/main.css -d ./src/css/"
},
"dependencies": {
"angular": "1.5.7",
"archiver": "1.0.1",
"connect": "3.4.1",
"electron-context-menu": "0.8.0",
"fast-image-size": "0.1.2",
"fs-extra": "0.30.0",
"minimist": "1.2.0",
"mjs-imageslicer": "https://github.com/MappedJS/mjs-imageslicer.git",
"mjs-plugin": "https://github.com/MappedJS/mjs-plugin.git",
"pug": "2.0.0-beta3",
"python-shell": "0.4.0",
"request": "2.74.0",
"serve-static": "1.11.1",
"xlsx": "0.8.0"
},
"devDependencies": {
"autoprefixer": "6.3.6",
"electron-builder": "5.10.1",
"electron-prebuilt": "1.2.5",
"napa": "2.3.0",
"postcss-cli": "2.5.2",
"watch": "0.19.1"
},
"build": {
"appId": "de.mappedJS",
"app-category-type": "public.app-category.utilities",
"productName": "MappedJS_Authoring_Tool",
"win": {
"iconUrl": "https://raw.githubusercontent.com/MappedJS/mjs-material/master/icon.ico"
}
}
}