-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "parse-imports-ts",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "https://github.com/ncochard/parse-imports-ts"
},
"license": "MIT",
"author": "Nicolas Cochard ([email protected])",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"scripts": {
"clean": "npx rimraf dist .cache",
"purge": "npx rimraf dist .cache node_modules yarn.lock",
"build": "npm run lint && npm run tsc",
"lint": "eslint ./src/ --ext ts,json,mts --quiet --fix",
"tsc": "npm-run-all -p -l -n tsc-cjs tsc-esm",
"tsc-cjs": "tsc --build tsconfig.json",
"tsc-esm": "tsc --build tsconfig-esm.json",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@jest/types": "^27.5.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-airbnb-typescript": "^16.1.2",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.7.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5"
}
}