-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 972 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
40
41
42
43
{
"name": "amdextract",
"version": "3.0.0",
"description": "Uses AST to extract AMD modules, their parts and an optimized output without unused dependencies while keeping the original format.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/mehdishojaei/amdextract.git"
},
"keywords": [
"AMD",
"dependency",
"unused",
"useless",
"extract",
"detect",
"parse",
"optimize",
"analyze",
"source"
],
"author": {
"name": "Mehdi Shojaei",
"email": "msh6180339@gmail.com",
"url": "https://github.com/mehdishojaei"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mehdishojaei/amdextract/issues"
},
"homepage": "https://github.com/mehdishojaei/amdextract",
"devDependencies": {
"mocha": "^6.2.2",
"should": "^13.2.3"
},
"dependencies": {
"esprima": "^4.0.1",
"estraverse": "^4.3.0"
}
}