-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 861 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
{
"name": "flast",
"version": "2.2.2",
"description": "Flatten JS AST",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"prepare": "husky",
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerimeterX/flast.git"
},
"keywords": [
"js",
"javascript",
"AST"
],
"author": "Ben Baryo ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/PerimeterX/flast/issues"
},
"homepage": "https://github.com/PerimeterX/flast#readme",
"dependencies": {
"escodegen": "npm:@javascript-obfuscator/escodegen",
"eslint-scope": "^8.2.0",
"espree": "^10.3.0"
},
"devDependencies": {
"eslint": "^9.18.0",
"husky": "^9.1.7"
}
}