File tree Expand file tree Collapse file tree 2 files changed +64
-1
lines changed
Expand file tree Collapse file tree 2 files changed +64
-1
lines changed Original file line number Diff line number Diff line change 1+ # See http://help.github.com/ignore-files/ for more about ignoring
2+ # files.
3+ #
4+ # If you find yourself ignoring temp files generated by your text editor
5+ # or operating system, you probably want to add a global ignore instead:
6+ # git config --global core.excludesfile ~/.gitignore
7+
8+ # Ignore npm packaging
9+ node_modules
10+ bower_components
11+ # Ignore IDEA files
12+ /.idea
13+
14+ # Ignore all logfiles and tempfiles.
15+ * .log
16+ * .colt
17+ /tmp
18+
19+ # # Ignore all generated files
20+ /coverage
21+ /rdoc
22+ /wiki
23+ /packaging
24+ npm-debug.log
25+ * .tmproj
26+ azure_error
27+ what
28+ * .sublime-workspace
29+
30+ # Output folder
31+ /dist
32+
33+ # Numerous always-ignore extensions
34+ * ~
35+ * .diff
36+ * .patch
37+ * .err
38+ * .orig
39+ * .log
40+ * .rej
41+ * .swo
42+ * .swp
43+ * .vi
44+ * ~
45+ * .sass-cache
46+
47+ # OS or Editor folders
48+ .DS_Store
49+ .cache
50+ .project
51+ .settings
52+ .tmproj
53+ nbproject
54+ Thumbs.db
55+
56+ # config files
57+ /examples /config.js
58+ /config /* .yml
59+ /config /* .json
60+
61+ runTestsDebug.sh
62+ .mimosa /require /*
63+ logfile
Original file line number Diff line number Diff line change 55 "main" : " index.js" ,
66 "scripts" : {
77 "test" : " NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha" ,
8- "windows-test" : " ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha"
8+ "windows-test" : " ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha"
99 },
1010 "repository" : {
1111 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments