-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 860 Bytes
/
package.json
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
{
"name": "@dukeluo/fanjs",
"version": "0.0.1",
"description": "A simple and easy-to-understand implementation of Promise/A+ spec for learning.",
"keywords": [
"Promise/A+",
"promise",
"learning-by-doing",
"learning-notes",
"learning-resource"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DukeLuo/fan.js.git"
},
"author": "Huan Luo <dukeluo@outlook.com> (https://shaiwang.life)",
"license": "MPL-2.0",
"homepage": "https://github.com/DukeLuo/fan.js",
"main": "index.js",
"scripts": {
"test": "promises-aplus-tests adapter",
"lint": "eslint ."
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-es5": "^0.5.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"promises-aplus-tests": "^2.1.2"
}
}