-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "package-info",
"version": "5.0.7",
"description": "Get the information of a npm package",
"license": "MIT",
"repository": "AlessandroMinoccheri/package-info",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"types": "dist/src/index.d.ts",
"bin": {
"package-info": "dist/cli.modern.js"
},
"author": {
"name": "Alessandro Minoccheri",
"email": "[email protected]",
"url": "https://github.com/AlessandroMinoccheri/"
},
"type": "module",
"scripts": {
"start": "tsc && node dist/index.modern.js",
"lint": "eslint . --ext .ts",
"test": "tsc && ts-mocha tests/*.js",
"test-gh": "npm run build && ls && ts-mocha tests/*.js",
"dev": "microbundle watch",
"build": "rm -rf dist && microbundle src/*.ts"
},
"keywords": [
"info",
"npm",
"package",
"package.json",
"current",
"module",
"npm",
"information",
"version",
"author"
],
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"microbundle": "^0.15.1",
"registry-url": "^6.0.1",
"undici": "^5.12.0"
},
"files": [
"dist/**/*"
]
}