-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@khatastroffik/npm-preview-package",
"version": "1.1.0",
"description": "This utility generates an overview of the files and directories, which would be part of an npm package when published: a package content preview.",
"scripts": {
"test": "jest --verbose",
"coverage": "jest --coverage",
"lint": "eslint -f pretty src",
"build": "tsc",
"dev:test": "jest --watch --verbose",
"dev:build": "tsc --watch",
"start": "ts-node --files --project tsconfig.json src/application.ts",
"start:node": "node dist/application.js",
"prepublishOnly": "npm run prod",
"prod": "npm run prod:clean && npm run prod:lint && npm run prod:test && npm run prod:build && npm run prod:copy",
"prod:build": "npm run build",
"prod:test": "jest --silent --all",
"prod:lint": "eslint --quiet src",
"prod:clean": "npm run clean",
"prod:copy": "npm run copy:typescripts",
"clean": "rimraf ./dist ./types ./coverage",
"clean:modules": "npx rimraf ./node_modules",
"copy:typescripts": "copyfiles -u 2 src/lib/**/* dist/lib",
"changelog": "npx generate-changelog"
},
"keywords": [
"npm",
"package-content",
"package",
"preview",
"packlist",
"npm-packlist",
"treeview",
"tree"
],
"author": {
"name": "Loïs Bégué",
"url": "https://www.khatastroffik.net"
},
"homepage": "https://www.khatastroffik.net",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"url": "https://github.com/khatastroffik/npm-preview-package.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/khatastroffik/npm-preview-package/issues"
},
"engines": {
"node": ">=13.x",
"npm": ">=6.x"
},
"files": [
"dist",
"types",
"doc"
],
"main": "dist/lib/index",
"node": "dist/lib/index.js",
"bin": {
"npm-previewpkg": "dist/application.js"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"copyfiles": "^2.3.0",
"eslint": "^7.2.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-notice": "^0.9.10",
"jest": "^26.0.1",
"jest-extended": "^0.11.5",
"jest-mock-process": "^1.4.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^5.1.0",
"npm-packlist": "^2.1.2",
"tslib": "^2.0.0"
}
}