-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 1.56 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@3fv/deferred",
"version": "1.2.14",
"description": "A reusable deferred",
"scripts": {
"build": "node ./scripts/build.mjs",
"build:link": "yarn run build && yarn unlink;yarn link",
"build:watch": "run-s build:link && yarn run build --watch",
"test": "jest",
"test:watch": "jest --watch",
"postversion": "node ./scripts/release.mjs latest",
"release": "yarn build && yarn test && yarn version --patch --non-interactive"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"src",
"README.md"
],
"main": "./lib/cjs/index.js",
"module": "./lib/mjs/index.js",
"types": "./lib/mjs/index.d.ts",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/3fv/guard.git"
},
"keywords": [
"typescript",
"promise",
"deferred",
"defer"
],
"author": "Jonathan Glanz",
"license": "MIT",
"bugs": {
"url": "https://github.com/3fv/deferred/issues"
},
"homepage": "https://github.com/3fv/deferred#readme",
"peerDependencies": {
"@3fv/guard": "^1",
"assert": "^2.0.0"
},
"devDependencies": {
"@3fv/guard": "^1",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.172",
"@types/node": "^16.4.12",
"@types/shelljs": "^0.8.15",
"assert": "^2.0.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"shelljs": "^0.8.5",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5",
"zx": "^8.1.4"
}
}