-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1 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
{
"name": "zousan",
"version": "4.0.1",
"description": "A Lightning Fast, Yet Very Small Promise A+ Compliant Implementation",
"keywords": [
"promises-aplus",
"promise"
],
"homepage": "https://github.com/bluejava/zousan#readme",
"bugs": {
"url": "https://github.com/bluejava/zousan/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluejava/zousan.git"
},
"license": "MIT",
"author": "Glenn Crownover <[email protected]> (http://www.bluejava.com)",
"type": "module",
"exports": {
".": {
"import": "./src/zousan.js",
"require": "./zousan-min.cjs"
}
},
"main": "./zousan-min.cjs",
"module": "./src/zousan.js",
"directories": {
"test": "test"
},
"files": [
"CHANGELOG.md",
"src/zousan.js",
"zousan-min.cjs"
],
"scripts": {
"build": "node scripts/build.cjs",
"prepack": "npm run build",
"test": "npm ci --prefix test && npm test --prefix test"
},
"devDependencies": {
"rollup": "^4.62.2",
"terser": "^5.48.0"
},
"packageManager": "[email protected]"
}