-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
38 lines (38 loc) · 942 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
{
"name": "@nodesecure/estree-ast-utils",
"version": "1.5.0",
"description": "Utilities for AST (ESTree compliant)",
"type": "module",
"exports": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"lint": "eslint src test",
"test": "node --test",
"check": "npm run lint && npm run test",
"coverage": "c8 -r html npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
},
"keywords": [
"estree",
"ast",
"utils"
],
"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/estree-ast-utils#readme",
"devDependencies": {
"estree-walker": "^3.0.2"
},
"dependencies": {
"@nodesecure/sec-literal": "^1.1.0"
}
}