forked from NodeSecure/js-x-ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "@nodesecure/ts-source-parser",
"version": "1.0.0",
"description": "TypeScript parser for AST XRay analysis",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"scripts": {
"lint": "eslint src test",
"prepublishOnly": "pkg-ok",
"test-only": "glob -c \"node --test-reporter=spec --test\" \"./test/**/*.spec.js\"",
"test": "c8 --all --src ./src -r html npm run test-only",
"check": "cross-env npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
},
"keywords": [
"typescript",
"estree",
"ast",
"utils"
],
"files": [
"src"
],
"author": "Michelet Jean <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/js-x-ray/issues"
},
"homepage": "https://github.com/NodeSecure/js-x-ray/tree/master/workspaces/ts-source-parser#readme",
"dependencies": {
"@typescript-eslint/typescript-estree": "^7.1.1"
}
}