-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "eme",
"productName": "eme",
"version": "0.1.0",
"description": "A markdown editor using Electron",
"main": "index.js",
"scripts": {
"start": "electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mutahhir/eme.git"
},
"keywords": [
"markdown",
"electron",
"codemirror"
],
"author": "Mutahhir Ali Hayat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mutahhir/eme/issues"
},
"homepage": "https://github.com/mutahhir/eme#readme",
"devDependencies": {
"electron-prebuilt": "^0.34.2",
"eslint": "^1.8.0",
"jspm": "^0.16.14"
},
"dependencies": {
"babel": "^6.0.15",
"babel-core": "^6.0.18",
"babel-plugin-transform-es2015-modules-commonjs": "^6.0.18",
"babel-preset-es2015": "^6.0.15",
"codemirror": "^5.8.0",
"electron-debug": "^0.3.0"
},
"jspm": {
"directories": {
"baseURL": "browser"
},
"dependencies": {
"codemirror": "npm:codemirror@^5.8.0",
"css": "github:systemjs/plugin-css@^0.1.19",
"electron-prebuilt": "npm:electron-prebuilt@^0.34.2"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}