forked from bamboo/purescript-electron-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 810 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 810 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
28
29
30
{
"name": "purescript-electron-quickstart",
"version": "1.0.0",
"description": "Quick start for a purely PureScript based Electron project",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "pulp build --to index.js && electron index.js",
"test": "pulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bamboo/purescript-electron-quickstart.git"
},
"keywords": [
"purescript",
"electron"
],
"author": "Rodrigo B. de Oliveira <rbo@acm.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bamboo/purescript-electron-quickstart/issues"
},
"homepage": "https://github.com/bamboo/purescript-electron-quickstart#readme",
"devDependencies": {
"electron-prebuilt": "^0.36.3"
}
}