-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
35
36
37
38
39
40
41
42
43
{
"name": "@jvalue/node-dry-basics",
"version": "0.0.3",
"description": "Reusable libraries for our node projects (NOT containing any dependencies)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --fix",
"lint-ci": "eslint src --max-warnings=0",
"build": "tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"@types/node": "^14.14.7",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"typescript": "^4.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jvalue/node-dry.git"
},
"keywords": [],
"author": "",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/jvalue/node-dry/issues"
},
"homepage": "https://github.com/jvalue/node-dry#readme"
}