forked from NodeSecure/sec-literal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
44
45
46
47
{
"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 --ext .js",
"test-only": "cross-env esm-tape-runner 'test/*.spec.js' | tap-monkey",
"test": "cross-env npm run lint && npm run test-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/sec-literal.git"
},
"keywords": [
"security",
"literal",
"estree",
"analysis",
"scanner"
],
"files": [
"src"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/sec-literal/issues"
},
"homepage": "https://github.com/NodeSecure/sec-literal#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^1.6.0",
"@slimio/is": "^2.0.0",
"@small-tech/esm-tape-runner": "^2.0.0",
"@small-tech/tap-monkey": "^1.4.0",
"cross-env": "^7.0.3",
"tape": "^5.6.1"
},
"dependencies": {
"frequency-set": "^1.0.2",
"is-base64": "^1.1.0",
"is-svg": "^4.3.2",
"string-width": "^5.1.2"
}
}