This repository was archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.98 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
76
77
78
79
80
81
{
"name": "constructr",
"productName": "ConstructR",
"version": "0.8.3",
"description": "Electron-based R shell",
"repository": {
"type": "git",
"url": "https://github.com/sdllc/constructr.git"
},
"author": {
"name": "Structured Data LLC",
"email": "info@riskamp.com"
},
"homepage": "https://constructr-project.com/shell",
"license": "MIT",
"main": "app/main.js",
"scripts": {
"start": "electron app/main.js",
"dist": "build"
},
"build": {
"asar": true,
"asar-unpack": "**/*.R",
"asar-unpack-dir": "**/{R-3.*,node_modules/controlr,library,R}/**/*",
"win": {
"iconUrl": "https://raw.githubusercontent.com/sdllc/constructr/master/build/icon.ico"
},
"linux": {
"depends": [
"r-base-core",
"r-base",
"r-recommended",
"libappindicator1",
"libnotify-bin"
],
"fpm": [
"--deb-priority",
"optional",
"--category",
"devel"
]
}
},
"dependencies": {
"chokidar": "^1.4.3",
"cmjs-shell": "^0.3.0",
"controlr": "^2.0.1",
"electron-squirrel-startup": "^1.0.0",
"electron-window-state": "^3.0.3",
"pubsub-js": "^1.5.3",
"untildify": "^3.0.2",
"xml": "^1.0.1"
},
"devDependencies": {
"bower": "^1.7.9",
"del": "^2.2.0",
"electron-builder": "^3.25.0",
"electron-prebuilt": "^1.2.3",
"extract-zip": "^1.5.0",
"gulp": "^3.9.1",
"gulp-add-src": "^0.2.0",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "^2.1.2",
"gulp-htmlmin": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-livereload": "^3.8.1",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-run": "^1.6.12",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"lodash.assign": "^4.0.7",
"postcss-import": "^8.1.0",
"request": "^2.72.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^1.12.14",
"webpack-stream": "^3.1.0"
}
}