generated from jfarmer/template-javascript
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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": "project-javascript-evaluate-rpn",
"version": "0.0.0",
"description": "Build a command-line program to evaluate expressions written in Reverse Polish Notation (RPN)",
"main": "evaluateRPN.js",
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"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/project-javascript-evaluate-rpn.git"
},
"keywords": [
"javascript",
"exercises"
],
"author": "Jesse Farmer <jesse@20bits.com>",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/jfarmer/project-javascript-evaluate-rpn/issues"
},
"homepage": "https://github.com/jfarmer/project-javascript-evaluate-rpn#readme"
}