-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1008 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
{
"name": "typings-resolver",
"version": "1.0.0",
"description": "Resolve all Typescript Definitions Files",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "tsup",
"test": "npm run build && jest --config ./jest.config.json --forceExit",
"lint": "eslint ./src"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/ttys026/typings-resolver.git"
},
"author": "ttys026 <a@tianyi.li>",
"dependencies": {
"cross-fetch": "^3.1.5",
"path-browserify": "^1.0.1",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"fs-extra": "^10.1.0",
"jest": "^27.3.1",
"ts-jest": "^27.1.4",
"tsup": "^6.2.0"
}
}