-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 690 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 690 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
{
"name": "proportional",
"version": "0.0.1",
"description": "A library intended to make CLI's easier to work with",
"main": "proportional.js",
"scripts": {
"lint": "eslint ./proportional.js ./context-manager.js ./examples/**/*.js",
"format": "prettier-eslint ./proportional.js ./examples/**/*.js ./context-manager.js --write"
},
"author": "Even Stensberg <evenstensberg@gmail.com>",
"license": "MIT",
"keywords": [
"CLI",
"0CJS"
],
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "^11.1.0",
"prettier-eslint-cli": "^7.1.0"
},
"dependencies": {
"yargs-parser": "^21.1.1"
}
}