-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "@nodesecure/vis-network",
"version": "1.4.0",
"description": "NodeSecure vis.js network front module",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "rimraf ./dist ./tsconfig.tsbuildinfo && tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"test-only": "node --test \"test/*.test.ts\"",
"test": "c8 npm run test",
"example": "vite"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/cli",
"directory": "workspaces/vis-network"
},
"files": [
"src"
],
"keywords": [
"NodeSecure",
"vis",
"network"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"dependencies": {
"pretty-bytes": "7.1.0",
"vis-data": "8.0.3",
"vis-network": "10.0.2"
},
"devDependencies": {
"@nodesecure/flags": "3.0.3",
"@nodesecure/scanner": "10.10.0"
}
}