-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
{
"name": "promise-a",
"version": "1.0.0",
"description": "Implement the Promises/A+ standard with Next ECMAScript",
"main": "src/promise.js",
"scripts": {
"test": "babel-node test/test.js"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"core-js": "^3.14.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@types/eslint": "^7.2.13",
"@types/prettier": "^2.3.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-proposal": "^2.3.0",
"prettier": "^2.3.1",
"promises-aplus-tests": "^2.1.2"
},
"config": {},
"author": "[email protected]",
"homepage": "https://github.com/zhilidali/PA#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zhilidali/PA.git"
},
"bugs": {
"url": "https://github.com/zhilidali/PA/issues"
},
"keywords": [
"Promises/A+"
],
"license": "ISC"
}