UNPKG

1.07 kBJSONView Raw
1{
2 "name": "@wry/context",
3 "version": "0.6.1",
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 "main": "lib/context.js",
8 "module": "lib/context.esm.js",
9 "types": "lib/context.d.ts",
10 "keywords": [],
11 "homepage": "https://github.com/benjamn/wryware",
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/benjamn/wryware.git"
15 },
16 "bugs": {
17 "url": "https://github.com/benjamn/wryware/issues"
18 },
19 "scripts": {
20 "clean": "../../node_modules/.bin/rimraf lib",
21 "tsc": "../../node_modules/.bin/tsc",
22 "rollup": "../../node_modules/.bin/rollup -c",
23 "build": "npm run clean && npm run tsc && npm run rollup",
24 "mocha": "../../scripts/test.sh lib/tests.js",
25 "prepare": "npm run build",
26 "test": "npm run build && npm run mocha"
27 },
28 "dependencies": {
29 "tslib": "^2.3.0"
30 },
31 "engines": {
32 "node": ">=8"
33 },
34 "gitHead": "91655122045a99ad445aa330e88905feb3775db6"
35}