Skip to content

Commit

Permalink
Meta tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jun 8, 2018
1 parent e34ecf6 commit 1de057b
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 53 deletions.
3 changes: 1 addition & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
* text=auto
*.js text eol=lf
* text=auto eol=lf
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
yarn.lock
coverage
.nyc_output
.test-cache/
.test-cache
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
93 changes: 44 additions & 49 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,46 @@
{
"name": "caching-transform",
"version": "1.0.1",
"description": "Wraps a transform and provides caching",
"license": "MIT",
"repository": "avajs/caching-transform",
"author": {
"name": "James Talmage",
"email": "[email protected]",
"url": "github.com/jamestalmage"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && nyc ava"
},
"files": [
"index.js"
],
"keywords": [
"transform",
"cache",
"require",
"transpile",
"fast",
"speed",
"hash"
],
"dependencies": {
"make-dir": "^1.0.0",
"md5-hex": "^2.0.0",
"package-hash": "^2.0.0",
"write-file-atomic": "^2.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.1",
"nyc": "^12.0.2",
"proxyquire": "^2.0.1",
"rimraf": "^2.6.2",
"sinon": "^5.1.0",
"xo": "^0.21.1"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
"name": "caching-transform",
"version": "1.0.1",
"description": "Wraps a transform and provides caching",
"license": "MIT",
"repository": "avajs/caching-transform",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && nyc ava"
},
"files": [
"index.js"
],
"keywords": [
"transform",
"cache",
"require",
"transpile",
"fast",
"speed",
"hash"
],
"dependencies": {
"make-dir": "^1.0.0",
"md5-hex": "^2.0.0",
"package-hash": "^2.0.0",
"write-file-atomic": "^2.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.1",
"nyc": "^12.0.2",
"proxyquire": "^2.0.1",
"rimraf": "^2.6.2",
"sinon": "^5.1.0",
"xo": "^0.21.1"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Caching transform results can greatly improve performance. `nyc` saw [dramatic p
## Install

```
$ npm install --save caching-transform
$ npm install caching-transform
```


Expand Down

0 comments on commit 1de057b

Please sign in to comment.