-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 930 Bytes
/
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
{
"name": "@nodelint/core-packages",
"version": "1.0.0",
"description": "Nodelint core",
"type": "module",
"scripts": {
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nodelint/core.git"
},
"keywords": [
"node",
"lint"
],
"workspaces": [
"packages/core",
"packages/policy"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nodelint/core/issues"
},
"homepage": "https://github.com/Nodelint/core#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^1.7.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.1.3",
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.40.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"rimraf": "^5.0.0"
}
}