Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit bf9f31c

Browse files
committed
Add pluralize and gitignore
1 parent bdc2ad6 commit bf9f31c

2 files changed

Lines changed: 121 additions & 1 deletion

File tree

.gitignore

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
2+
# Created by https://www.gitignore.io/api/node,windows,osx,linux
3+
4+
### Node ###
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# node-waf configuration
29+
.lock-wscript
30+
31+
# Compiled binary addons (http://nodejs.org/api/addons.html)
32+
build/Release
33+
34+
# Dependency directories
35+
node_modules
36+
jspm_packages
37+
38+
# Optional npm cache directory
39+
.npm
40+
41+
# Optional eslint cache
42+
.eslintcache
43+
44+
# Optional REPL history
45+
.node_repl_history
46+
47+
# Output of 'npm pack'
48+
*.tgz
49+
50+
# Yarn Integrity file
51+
.yarn-integrity
52+
53+
54+
55+
### Windows ###
56+
# Windows thumbnail cache files
57+
Thumbs.db
58+
ehthumbs.db
59+
ehthumbs_vista.db
60+
61+
# Folder config file
62+
Desktop.ini
63+
64+
# Recycle Bin used on file shares
65+
$RECYCLE.BIN/
66+
67+
# Windows Installer files
68+
*.cab
69+
*.msi
70+
*.msm
71+
*.msp
72+
73+
# Windows shortcuts
74+
*.lnk
75+
76+
77+
### OSX ###
78+
*.DS_Store
79+
.AppleDouble
80+
.LSOverride
81+
82+
# Icon must end with two \r
83+
Icon
84+
# Thumbnails
85+
._*
86+
# Files that might appear in the root of a volume
87+
.DocumentRevisions-V100
88+
.fseventsd
89+
.Spotlight-V100
90+
.TemporaryItems
91+
.Trashes
92+
.VolumeIcon.icns
93+
.com.apple.timemachine.donotpresent
94+
# Directories potentially created on remote AFP share
95+
.AppleDB
96+
.AppleDesktop
97+
Network Trash Folder
98+
Temporary Items
99+
.apdisk
100+
101+
102+
### Linux ###
103+
*~
104+
105+
# temporary files which can be created if a process still has a handle open of a deleted file
106+
.fuse_hidden*
107+
108+
# KDE directory preferences
109+
.directory
110+
111+
# Linux trash folder which might appear on any partition or disk
112+
.Trash-*
113+
114+
# .nfs files are created when an open file is removed but is still being accessed
115+
.nfs*
116+
117+
# End of https://www.gitignore.io/api/node,windows,osx,linux

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@
1515
"bugs": {
1616
"url": "https://github.com/atomixinteractions/restified/issues"
1717
},
18-
"homepage": "https://github.com/atomixinteractions/restified#readme"
18+
"homepage": "https://github.com/atomixinteractions/restified#readme",
19+
"dependencies": {
20+
"pluralize": "^3.1.0"
21+
}
1922
}

0 commit comments

Comments
 (0)