-
Notifications
You must be signed in to change notification settings - Fork 601
/
package.json
37 lines (37 loc) · 892 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": "mindmaps",
"description": "mindmaps is a prototype of an HTML5 based mind mapping application. It lets you create neat looking mind maps in the browser.",
"version": "0.8.0",
"keywords": [
"html5",
"mindmap",
"offline"
],
"author": "David Richard",
"repository": {
"type": "git",
"url": "https://github.com/drichard/mindmaps"
},
"bugs": {
"url": "http://github.com/drichard/mindmaps/issues"
},
"scripts": {
"start": "http-server ./src -p 3000",
"start:prod": "npm run build && cd bin && python -m SimpleHTTPServer 3000",
"build": "jake"
},
"license": {
"type": "AGPL",
"url": "http://github.com/drichard/mindmaps/raw/master/LICENSE"
},
"engines": {
"node": ">=0.6"
},
"dependencies": {
"jake": "^8.0.15",
"uglify-js": "^3.3.27"
},
"devDependencies": {
"http-server": "^0.11.1"
}
}