forked from Shastel/towel-sort
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 747 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 747 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
{
"name": "towel-sort",
"version": "1.0.0",
"description": "Towel Sort",
"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/towel-sort.git"
},
"author": "max@shas.tel",
"license": "MIT",
"homepage": "https://github.com/rolling-scopes-school/towel-sort",
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"mocha": "^10.8.2",
"prettier": "^3.5.3"
}
}