-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.27 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
48
49
50
51
52
{
"name": "import-manager",
"version": "0.4.4",
"description": "A class to analyze and manipulate JavaScript import statements from source code files.",
"main": "./cjs/import-manager.cjs",
"module": "./src/core.js",
"exports": {
"import": "./src/core.js",
"require": "./cjs/import-manager.cjs"
},
"type": "module",
"scripts": {
"build:cjs": "rollup ./src/core.js --file ./cjs/import-manager.cjs --format cjs -m",
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"test": "remembrance && ava",
"test:dev": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UmamiAppearance/ImportManager.git"
},
"keywords": [
"Source",
"Code",
"ES6",
"CJS",
"Dynamic",
"Imports",
"Import",
"Analyze",
"Manipulate"
],
"author": "UmamiAppearance",
"license": "MIT",
"bugs": {
"url": "https://github.com/UmamiAppearance/ImportManager/issues"
},
"homepage": "https://github.com/UmamiAppearance/ImportManager#readme",
"devDependencies": {
"ava": "^5.3.1",
"eslint": "^8.44.0",
"remembrance": "^0.3.1",
"rollup": "^3.26.1"
},
"dependencies": {
"acorn": "^8.10.0",
"acorn-walk": "^8.2.0",
"colorette": "^2.0.20",
"magic-string": "^0.30.1"
}
}