-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 900 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
34
35
36
37
{
"name": "electron-ts",
"version": "0.0.1",
"description": "Electron + TypeScript",
"main": "init.js",
"scripts": {
"build": "grunt compile",
"test": "mocha dist/test",
"start": "electron dist/init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bls/electron-ts.git"
},
"keywords": [
"electron",
"typescript"
],
"author": "Blair Strang <Blair.Strang@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bls/electron-ts/issues"
},
"homepage": "https://github.com/bls/electron-ts#readme",
"devDependencies": {
"electron-prebuilt": "^0.36.7",
"grunt": "^0.4.5",
"grunt-contrib-copy": "^0.8.2",
"grunt-electron": "^2.0.1",
"grunt-ts": "^5.1.0",
"grunt-tslint": "^3.0.0",
"mocha": "^2.4.5",
"tslint": "^3.3.0-dev.2",
"typescript": "^1.8.0"
},
"dependencies": {}
}