forked from marcorinck/ngStart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.42 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
{
"name": "ngStart",
"homepage": "https://github.com/marcorinck/ngStart",
"author": "Marco Rinck <marco.rinck@googlemail.com>",
"description": "This project is a skeleton to use for new angularJS projects. It works out of the box without changes and contains all the boiler plate code to setup a new project. It contains hooks for your production code, unit tests, deployment, module loading and much more.",
"bugs": {
"url": "http://github.com/marcorinck/ngStart/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/marcorinck/ngStart"
},
"version": "0.2.0",
"license": "MIT",
"devDependencies": {
"karma": "0.10.x",
"grunt": "0.4.x",
"grunt-contrib-clean": "0.5.x",
"grunt-contrib-copy": "0.4.x",
"grunt-contrib-compress": "0.5.x",
"grunt-contrib-jshint": "0.6.x",
"grunt-contrib-connect": "0.3.x",
"grunt-contrib-watch": "0.5.x",
"grunt-contrib-cssmin": "0.6.x",
"grunt-karma": "0.6.x",
"grunt-requirejs": "0.4.x",
"grunt-exec": "0.4.x",
"grunt-data-uri": "0.1.x",
"grunt-targethtml": "0.2.x",
"grunt-manifest": "0.4.x",
"grunt-release": "0.5.x",
"license-checker": "0.0.x",
"load-grunt-tasks": "0.2.0"
},
"engines": {
"node": "0.10.x"
},
"folders": {
"build": "target/",
"wwwRoot": "src/main/",
"jsSource": "src/main/modules/",
"externalLibs": "src/main/external-libs/",
"testRoot": "src/test/"
}
}