-
Notifications
You must be signed in to change notification settings - Fork 537
/
package.json
30 lines (30 loc) · 914 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
{
"name": "core-js-promises",
"version": "1.0.0",
"description": "Core JS promises task",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha",
"lint": "node node_modules/eslint/bin/eslint.js ./src",
"lint:fix": "node node_modules/eslint/bin/eslint.js ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rolling-scopes-school/core-js-promises.git"
},
"author": "mikaleinik",
"license": "MIT",
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3"
},
"bugs": {
"url": "https://github.com/rolling-scopes-school/core-js-promises/issues"
},
"homepage": "https://github.com/rolling-scopes-school/core-js-promises#readme"
}