-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "micro-mvc",
"title": "microMVC Framework",
"version": "0.0.2",
"description": "Minimalist Javascript MVC Framework",
"main": "dist/js/micromvc.js",
"homepage": "http://www.uneak.fr",
"author": "Marc Galoyer <mgaloyer@uneak.fr>",
"repository": {
"type": "git",
"url": "https://github.com/uneak/microMVC.git"
},
"bugs": {
"url": "https://github.com/uneak/microMVC/issues"
},
"keywords": [
"javascript",
"framework",
"MVC",
"requirejs",
"AMD",
"micro",
"nano",
"minimalist"
],
"dependencies": {},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.1",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-npm2bower-sync": "^0.8.1",
"requirejs": "~2.1.16",
"grunt-contrib-requirejs": "~0.4.4",
"grunt-template-jasmine-requirejs": "~0.2.2",
"grunt-contrib-jasmine": "~0.8.2"
},
"scripts": {
"build": "npm install && grunt",
"start": "grunt"
},
"preferGlobal": false,
"private": false,
"license": "MIT"
}