You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
{ |
|
"name": "@wry/caches", |
|
"version": "1.0.1", |
|
"author": "Ben Newman <ben@eloper.dev>", |
|
"description": "Various cache implementations", |
|
"license": "MIT", |
|
"type": "module", |
|
"sideEffects": false, |
|
"main": "lib/bundle.cjs", |
|
"module": "lib/index.js", |
|
"types": "lib/index.d.ts", |
|
"keywords": [], |
|
"homepage": "https://github.com/benjamn/wryware", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/benjamn/wryware.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/benjamn/wryware/issues" |
|
}, |
|
"scripts": { |
|
"build": "npm run clean:before && npm run tsc && npm run rollup && npm run clean:after", |
|
"clean:before": "rimraf lib", |
|
"tsc": "npm run tsc:es5 && npm run tsc:esm", |
|
"tsc:es5": "tsc -p tsconfig.es5.json", |
|
"tsc:esm": "tsc -p tsconfig.json", |
|
"rollup": "rollup -c rollup.config.js", |
|
"clean:after": "rimraf lib/es5", |
|
"prepare": "npm run build", |
|
"test:cjs": "../../shared/test.sh lib/tests/bundle.cjs", |
|
"test:esm": "../../shared/test.sh lib/tests/bundle.js", |
|
"test": "npm run test:esm && npm run test:cjs" |
|
}, |
|
"dependencies": { |
|
"tslib": "^2.3.0" |
|
}, |
|
"engines": { |
|
"node": ">=8" |
|
}, |
|
"gitHead": "fc1400e8db54eb763822c69748c866909363a2c3" |
|
}
|
|
|