-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "nodl",
"version": "0.1.0",
"description": "A library for building node-based applications.",
"main": "build/index.js",
"private": true,
"scripts": {
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilwidlund/nodl.git"
},
"keywords": [],
"author": "Emil Widlund",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilwidlund/nodl/issues"
},
"homepage": "https://github.com/emilwidlund/nodl#readme",
"dependencies": {
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3"
},
"workspaces": [
"packages/*",
"examples/*"
]
}