-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.25 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
{
"name": "denogent",
"version": "1.0.0",
"description": "**Disclaimer: This tool is in active development.**",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check-format": "prettier --config .prettierrc --check \"(src|e2e|build)/**/*.ts\"",
"format": "prettier --config .prettierrc --write \"(src|e2e|build)/**/*.ts\"",
"lint": "eslint src/ e2e/ build/ --max-warnings=0",
"lint-fix": "eslint src/ e2e/ build/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/areller/denogent.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/areller/denogent/issues"
},
"homepage": "https://github.com/areller/denogent#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}