UNPKG

1.23 kBJSONView Raw
1{
2 "name": "@wry/context",
3 "version": "0.7.4",
4 "author": "Ben Newman <ben@eloper.dev>",
5 "description": "Manage contextual information needed by (a)synchronous tasks without explicitly passing objects around",
6 "license": "MIT",
7 "type": "module",
8 "main": "lib/bundle.cjs",
9 "module": "lib/index.js",
10 "types": "lib/index.d.ts",
11 "keywords": [],
12 "homepage": "https://github.com/benjamn/wryware",
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/benjamn/wryware.git"
16 },
17 "bugs": {
18 "url": "https://github.com/benjamn/wryware/issues"
19 },
20 "scripts": {
21 "build": "npm run clean:before && npm run tsc && npm run rollup && npm run clean:after",
22 "clean:before": "rimraf lib",
23 "tsc": "npm run tsc:es5 && npm run tsc:esm",
24 "tsc:es5": "tsc -p tsconfig.es5.json",
25 "tsc:esm": "tsc -p tsconfig.json",
26 "rollup": "rollup -c rollup.config.js",
27 "clean:after": "rimraf lib/es5",
28 "prepare": "npm run build",
29 "test:cjs": "../../shared/test.sh lib/tests/bundle.cjs",
30 "test:esm": "../../shared/test.sh lib/tests/bundle.js",
31 "test": "npm run test:esm && npm run test:cjs"
32 },
33 "dependencies": {
34 "tslib": "^2.3.0"
35 },
36 "engines": {
37 "node": ">=8"
38 }
39}