-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 888 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
{
"name": "javascript",
"version": "1.0.0",
"description": "collection of algorithms, datastructures and utilities",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint **/*.js --quiet --fix",
"lint-win": "node node_modules\\eslint\\bin\\eslint **/*.js --quiet --fix",
"test": "jest --env=jsdom",
"test-watch": "jest --watchAll"
},
"jest": {
"testRegex": "../.*.js$"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flashdesignory/javascript.git"
},
"author": "Thorsten Kober",
"license": "ISC",
"bugs": {
"url": "https://github.com/flashdesignory/javascript/issues"
},
"homepage": "https://github.com/flashdesignory/javascript#readme",
"dependencies": {
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^27.5.1"
}
}