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/ |
node_modules/ |
||||
.nyc_output/ |
.nyc_output/ |
||||
coverage/ |
coverage/ |
||||
|
node4/ |
||||
|
@ -1,19 +1,24 @@ |
|||||
{ |
{ |
||||
"name": "http-cache-semantics", |
"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", |
"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", |
"repository": "https://github.com/pornel/http-cache-semantics.git", |
||||
|
"main": "node4/index.js", |
||||
"scripts": { |
"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": [ |
"files": [ |
||||
|
"node4/index.js", |
||||
"index.js", |
"index.js", |
||||
"test" |
"test" |
||||
], |
], |
||||
"author": "Kornel Lesiński <kornel@geekhood.net> (https://kornel.ski/)", |
"author": "Kornel Lesiński <kornel@geekhood.net> (https://kornel.ski/)", |
||||
"license": "BSD-2-Clause", |
"license": "BSD-2-Clause", |
||||
"devDependencies": { |
"devDependencies": { |
||||
|
"babel-cli": "^6.24.0", |
||||
|
"babel-preset-env": "^1.3.2", |
||||
"mocha": "^3.2.0" |
"mocha": "^3.2.0" |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue