forked from ad2302/find-imports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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": "@mafalda-sfu/find-imports",
"version": "2.0.1",
"description": "Find all imported modules in JavaScript files.",
"homepage": "https://github.com/cheton/find-imports",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"tscheck":"tsc -p . --noEmit",
"prepare": "rimraf dist && rollup -c rollup.config.mjs",
"eslint": "eslint *.js",
"test": "tap --node-arg=--loader=ts-node/esm --node-arg=--no-warnings --node-arg=--experimental-specifier-resolution=node \"tests/**/*.spec.ts\""
},
"author": "Cheton Wu <cheton@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:cheton/find-imports.git"
},
"engines": {
"node": ">= 10"
},
"keywords": [],
"dependencies": {
"@typescript-eslint/typescript-estree": "^5.59.0",
"fast-glob": "^3.2.12",
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"lodash.uniq": "^4.5.0",
"lodash.values": "^4.3.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"ensure-array": "^1.0.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/lodash.difference": "^4.5.7",
"@types/lodash.flatten": "^4.4.7",
"@types/lodash.get": "^4.4.7",
"@types/lodash.uniq": "^4.5.7",
"@types/lodash.values": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.39.0",
"rimraf": "^5.0.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"tap": "^16.3.4",
"ts-node": "^10.9.1"
}
}