-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
39 lines (39 loc) · 947 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
{
"name": "@nodesecure/sec-literal",
"version": "1.2.0",
"description": "Package created to analyze JavaScript literals",
"exports": "./src/index.js",
"private": false,
"type": "module",
"scripts": {
"lint": "eslint src",
"test-only": "node --test",
"test": "npm run lint && npm run test-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
},
"keywords": [
"security",
"literal",
"estree",
"analysis",
"scanner"
],
"files": [
"src"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/js-x-ray/issues"
},
"homepage": "https://github.com/NodeSecure/js-x-ray/tree/master/workspaces/sec-literal#readme",
"dependencies": {
"frequency-set": "^1.0.2",
"is-base64": "^1.1.0",
"is-svg": "^5.0.0",
"string-width": "^7.0.0"
}
}