-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "leadschema",
"description": "Leadfisher contract definition schema language",
"version": "1.0.0",
"homepage": "https://leadfisher.ru",
"author": "Alexander Ivanov <sashapop101@gmail.com>",
"license": "MIT",
"packageManager": "npm@9.6.4",
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"nodejs",
"zero-dependencies",
"prettier",
"eslint",
"ts",
"schema",
"leadfisher",
"javascript",
"typescript",
"contract"
],
"files": [
"/src",
"index.d.ts"
],
"scripts": {
"test": "node --test && tsc",
"dev": "node index.js",
"prettier:fix": "prettier --write \"**/*.{js,ts,json,html,cjs,md,yaml}\"",
"eslint:fix": "eslint --fix \"**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeadFisherSolutions/leadschema.git"
},
"engines": {
"node": ">= 20"
},
"devDependencies": {
"@types/node": "^20.2.5",
"eslint": "^8.41.0",
"eslint-config-leadfisher": "^1.2.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
}
}