4 changed files with 22 additions and 5 deletions
@ -0,0 +1,11 @@ |
|||
{ |
|||
"presets": [ |
|||
["env", { |
|||
"loose": true, |
|||
"targets": { |
|||
"browsers": false, |
|||
"node": 4 |
|||
} |
|||
}] |
|||
] |
|||
} |
@ -1,3 +1,4 @@ |
|||
node_modules/ |
|||
.nyc_output/ |
|||
coverage/ |
|||
node4/ |
|||
|
@ -1,19 +1,24 @@ |
|||
{ |
|||
"name": "http-cache-semantics", |
|||
"version": "3.7.1", |
|||
"version": "3.7.3", |
|||
"description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", |
|||
"main": "index.js", |
|||
"repository": "https://github.com/pornel/http-cache-semantics.git", |
|||
"main": "node4/index.js", |
|||
"scripts": { |
|||
"test": "mocha" |
|||
"compile": "babel -d node4/ index.js; babel -d node4/test test", |
|||
"prepublish": "npm run compile", |
|||
"test": "npm run compile; mocha node4/test" |
|||
}, |
|||
"files": [ |
|||
"node4/index.js", |
|||
"index.js", |
|||
"test" |
|||
], |
|||
"author": "Kornel Lesiński <kornel@geekhood.net> (https://kornel.ski/)", |
|||
"license": "BSD-2-Clause", |
|||
"devDependencies": { |
|||
"babel-cli": "^6.24.0", |
|||
"babel-preset-env": "^1.3.2", |
|||
"mocha": "^3.2.0" |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue