forked from jfarmer/exercises-js-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1 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
{
"name": "exercises-javascript-fundamentals",
"version": "0.1.0",
"description": "A collection of beginner coding exercises in JavaScript",
"main": "index.js",
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jsdoc": "^4.0.2"
},
"scripts": {
"docs": "npx jsdoc -c ./.jsdoc.conf.json",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfarmer/exercises-javascript-fundamentals.git"
},
"keywords": [
"javascript",
"exercises"
],
"author": "Jesse Farmer <jesse@20bits.com>",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/jfarmer/exercises-javascript-fundamentals/issues"
},
"homepage": "https://github.com/jfarmer/exercises-javascript-fundamentals#readme"
}