forked from siddii/angular-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.8 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.8 KB
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
48
49
50
51
{
"name": "junk",
"version": "0.2.1",
"description": "Helps you filter out OS junk files like .DS_Store and Thumbs.db",
"keywords": [
"junk",
"trash",
"garbage",
"files",
"os",
"operating system",
"ignore",
"exclude",
"filter"
],
"homepage": "https://github.com/sindresorhus/junk",
"bugs": {
"url": "https://github.com/sindresorhus/junk/issues"
},
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"main": "junk.js",
"repository": {
"type": "git",
"url": "git://github.com/sindresorhus/junk.git"
},
"scripts": {
"test": "mocha"
},
"devDependencies": {
"mocha": "~1.9.0"
},
"engines": {
"node": ">=0.8.0"
},
"licenses": [
{
"type": "MIT"
}
],
"files": [
"junk.js"
],
"readme": "# junk [](http://travis-ci.org/sindresorhus/junk)\n\nHelps you filter out [OS junk files](test.js) like .DS_Store and Thumbs.db\n\n\n\n## Getting started\n\nInstall: `npm install --save junk`\n\n\n## Example\n\n```js\nvar fs = require('fs');\nvar junk = require('junk');\n\nfs.readdir('path', function (err, files) {\n\tconsole.log(files);\n\t// ['.DS_Store', 'test.jpg']\n\n\tconsole.log(files.filter(junk.isnt));\n\t// ['test.jpg']\n});\n```\n\n\n## Documentation\n\n\n### junk.is(filename)\n\nReturns true if `filename` matches any of the `junk.rules`.\n\n\n### junk.isnt(filename)\n\nReturns true if `filename` doesn't match any of the `junk.rules`.\n\n\n### junk.rules\n\nReturns an array of regexes you can match against.\n\n\n## License\n\nMIT License • © [Sindre Sorhus](http://sindresorhus.com)\n",
"readmeFilename": "readme.md",
"_id": "junk@0.2.1",
"_from": "junk@~0.2.0"
}