-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1008 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1008 Bytes
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
{
"name": "Adehun",
"version": "1.0.0",
"description": "Adehun is an extremely lightweight Promise/A+ implementation (about 166 LOC) and very useful for learning how to implement the Promise/A+ spec.",
"main": "adehun.js",
"type": "module",
"scripts": {
"test": "node testrunner.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/abdulapopoola/Adehun"
},
"keywords": [
"promise",
"promises",
"promise/A+",
"adehun",
"adehunJS"
],
"author": "AbdulFattah Popoola <abdulapopoola@outlook.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"promises-aplus-tests": "^2.1.2"
},
"contributors": [
{
"name": "AbdulFattah Popoola",
"web": "http://abdulapopoola.com"
}
]
}