-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 968 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 968 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
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@dworkman/jam",
"version": "1.0.4",
"description": "jam: JSON Array Modifier - A small package to help you add additional properties and data to a JSON array and return a JSON file or JSON string.",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"test": "npm run eslint",
"eslint": "npx eslint .",
"start:dev": "npx nodemon"
},
"author": "",
"license": "MIT",
"engines": {
"node": "*"
},
"bin": {
"jam": "./bin/index.js"
},
"devDependencies": {
"@types/node": "^20.6.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"meow": "^12.1.1"
}
}