-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "angular-skeleton",
"namelower":"angular_skeleton",
"version": "0.0.1",
"description": "A skeleton with tests to be imported as bootstrap for future angular projects",
"main": "index.js",
"scripts": {
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/alayek/Angular-Skeleton.git"
},
"keywords": [
"angular",
"skeleton",
"grunt",
"npm",
"bower"
],
"author": "Arijit Layek",
"license": "GNU GPLv3",
"bugs": {
"url": "/~https://github.com/alayek/Angular-Skeleton/issues"
},
"homepage": "/~https://github.com/alayek/Angular-Skeleton#readme",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.6",
"grunt-jsdoc": "^0.6.6",
"grunt-karma": "^0.10.1",
"jasmine-core": "^2.3.4",
"karma": "^0.12.33",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^0.1.4"
},
"scripts": {
"postinstall" : "bower install",
"test" : "grunt build"
}
}