Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[6a3a178] | 1 | {
|
---|
| 2 | "name": "map-age-cleaner",
|
---|
| 3 | "version": "0.1.3",
|
---|
| 4 | "description": "Automatically cleanup expired items in a Map",
|
---|
| 5 | "license": "MIT",
|
---|
| 6 | "repository": "SamVerschueren/map-age-cleaner",
|
---|
| 7 | "author": {
|
---|
| 8 | "name": "Sam Verschueren",
|
---|
| 9 | "email": "sam.verschueren@gmail.com",
|
---|
| 10 | "url": "github.com/SamVerschueren"
|
---|
| 11 | },
|
---|
| 12 | "main": "dist/index.js",
|
---|
| 13 | "engines": {
|
---|
| 14 | "node": ">=6"
|
---|
| 15 | },
|
---|
| 16 | "scripts": {
|
---|
| 17 | "prepublishOnly": "npm run build",
|
---|
| 18 | "pretest": "npm run build -- --sourceMap",
|
---|
| 19 | "test": "npm run lint && nyc ava dist/test.js",
|
---|
| 20 | "lint": "tslint --format stylish --project .",
|
---|
| 21 | "build": "npm run clean && tsc",
|
---|
| 22 | "clean": "del-cli dist"
|
---|
| 23 | },
|
---|
| 24 | "files": [
|
---|
| 25 | "dist/index.js",
|
---|
| 26 | "dist/index.d.ts"
|
---|
| 27 | ],
|
---|
| 28 | "keywords": [
|
---|
| 29 | "map",
|
---|
| 30 | "age",
|
---|
| 31 | "cleaner",
|
---|
| 32 | "maxage",
|
---|
| 33 | "expire",
|
---|
| 34 | "expiration",
|
---|
| 35 | "expiring"
|
---|
| 36 | ],
|
---|
| 37 | "dependencies": {
|
---|
| 38 | "p-defer": "^1.0.0"
|
---|
| 39 | },
|
---|
| 40 | "devDependencies": {
|
---|
| 41 | "@types/delay": "^2.0.1",
|
---|
| 42 | "@types/node": "^10.7.1",
|
---|
| 43 | "ava": "^0.25.0",
|
---|
| 44 | "codecov": "^3.0.0",
|
---|
| 45 | "del-cli": "^1.1.0",
|
---|
| 46 | "delay": "^3.0.0",
|
---|
| 47 | "nyc": "^12.0.0",
|
---|
| 48 | "tslint": "^5.11.0",
|
---|
| 49 | "tslint-xo": "^0.9.0",
|
---|
| 50 | "typescript": "^3.0.1"
|
---|
| 51 | },
|
---|
| 52 | "typings": "dist/index.d.ts",
|
---|
| 53 | "sideEffects": false,
|
---|
| 54 | "nyc": {
|
---|
| 55 | "exclude": [
|
---|
| 56 | "dist/test.js"
|
---|
| 57 | ]
|
---|
| 58 | }
|
---|
| 59 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.