-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 870 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 870 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
{
"name": "promise",
"version": "1.0.0",
"description": "根据 Promise/A+ 规范和 ES6 规范,实现一个 Promise,帮助理解 ES6 Promise 原理和事件循环。附 async 和 await 模拟实现",
"main": "index.js",
"scripts": {
"test": "promises-aplus-tests src/promise/promise-a-plus.js",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lfp1024/promise.git"
},
"author": "lfpdev",
"license": "ISC",
"bugs": {
"url": "https://github.com/lfpdev/promise/issues"
},
"homepage": "https://github.com/lfpdev/promise#readme",
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"promises-aplus-tests": "^2.1.2"
},
"dependencies": {
"debug": "^4.1.1"
}
}