Commit 277bf071394c0f67583314b83948bbed3b89ac51
1 parent
c41ff77d35
Exists in
master
add gitignore
Showing
3 changed files
with
63 additions
and
0 deletions
Show diff stats
.gitignore
... | ... | @@ -0,0 +1,42 @@ |
1 | +# Numerous always-ignore extensions | |
2 | +*.bak | |
3 | +*.patch | |
4 | +*.diff | |
5 | +*.err | |
6 | + | |
7 | +# temp file for git conflict merging | |
8 | +*.orig | |
9 | +*.log | |
10 | +*.rej | |
11 | +*.swo | |
12 | +*.swp | |
13 | +*.zip | |
14 | +*.vi | |
15 | +*~ | |
16 | +*.sass-cache | |
17 | +*.tmp.html | |
18 | +*.dump | |
19 | + | |
20 | +# OS or Editor folders | |
21 | +.DS_Store | |
22 | +._* | |
23 | +.cache | |
24 | +.project | |
25 | +.settings | |
26 | +.tmproj | |
27 | +*.esproj | |
28 | +*.sublime-project | |
29 | +*.sublime-workspace | |
30 | +nbproject | |
31 | +thumbs.db | |
32 | +*.iml | |
33 | + | |
34 | +# Folders to ignore | |
35 | +.hg | |
36 | +.svn | |
37 | +.CVS | |
38 | +.idea | |
39 | +node_modules/ | |
40 | +jscoverage_lib/ | |
41 | +bower_components/ | |
42 | +dist/ | ... | ... |
package-lock.json
package.json
... | ... | @@ -0,0 +1,18 @@ |
1 | +{ | |
2 | + "name": "gulu-vue", | |
3 | + "version": "1.0.0", | |
4 | + "description": "thie is a new gulu project base on vue", | |
5 | + "main": "main.js", | |
6 | + "dependencies": {}, | |
7 | + "devDependencies": {}, | |
8 | + "scripts": { | |
9 | + "test": "echo \"Error: no test specified\" && exit 1" | |
10 | + }, | |
11 | + "repository": { | |
12 | + "type": "git", | |
13 | + "url": "http://121.40.31.31:8888/jp/gulu-vue.git" | |
14 | + }, | |
15 | + "keywords": [], | |
16 | + "author": "", | |
17 | + "license": "ISC" | |
18 | +} | ... | ... |