Skip to content

Commit d12fb3a

Browse files
author
K.C. Hunter
committed
default files
1 parent 5282229 commit d12fb3a

4 files changed

Lines changed: 82 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
bower_components/
2+
node_modules/
3+
docs/
4+
.sass-cache/

bower.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "AccioCode AngularJS Tutorial",
3+
"version": "1.0.0",
4+
"homepage": "https://github.com/colorfest/angularjs",
5+
"authors": [
6+
"AccioCode"
7+
],
8+
"description": "AccioCode tutorial series for AngularJS",
9+
"main": "index.html",
10+
"keywords": [
11+
"acciocode",
12+
"angularjs",
13+
"grunt",
14+
"bower",
15+
"nodejs",
16+
"npm",
17+
"javascript",
18+
"mvc"
19+
],
20+
"license": "MIT",
21+
"private": true,
22+
"ignore": [
23+
"**/.*",
24+
"node_modules",
25+
"bower_components",
26+
"test",
27+
"tests"
28+
],
29+
"dependencies": {
30+
"angularjs": "~1.3.2",
31+
"angular-route": "~1.3.2",
32+
"bootstrap": "~3.3.0",
33+
"modernizr": "~2.8.3",
34+
"jquery": "~2.1.1"
35+
}
36+
}

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "angularjs",
3+
"version": "1.0.0",
4+
"description": "AccioCode AngularJS tutorial series.",
5+
"main": "index.js",
6+
"dependencies": {
7+
"bower": "~1.3.12",
8+
"grunt-cli": "~0.1.13"
9+
},
10+
"devDependencies": {},
11+
"scripts": {
12+
"test": "echo \"Error: no test specified\" && exit 1"
13+
},
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/colorfest/angularjs.git"
17+
},
18+
"keywords": [
19+
"acciocode",
20+
"angularjs",
21+
"javascript"
22+
],
23+
"author": "AccioCode",
24+
"license": "BSD-2-Clause",
25+
"bugs": {
26+
"url": "https://github.com/colorfest/angularjs/issues"
27+
},
28+
"homepage": "https://github.com/colorfest/angularjs"
29+
}

src/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<title>AccioCode AngularJS Tutorial</title>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge,chrome=1">
7+
<meta name="viewport" content="width=device-width, user-scalable=no">
8+
9+
</head>
10+
<body>
11+
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)