-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.62 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.62 KB
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
{
"webpackConfigJaid": "nodeClass",
"version": "4.0.0",
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"dependencies": {
"@absolunet/fss": "^1.6.2",
"better-docs": "^1.4.7",
"debug": "^4.1.1",
"first-existing-path": "^1.0.1",
"jsdoc-api": "^7.0.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-export-default-interop": "^0.3.1",
"tsd-jsdoc": "^2.5.0"
},
"peerDependencies": {
"webpack": "^5.37.1"
},
"optionalDependencies": {
"publishimo-webpack-plugin": "4.0.0"
},
"devDependencies": {
"@absolunet/fsp": "^1.6.2",
"acorn": "^8.2.4",
"babel-jest": "^26.6.3",
"babel-preset-jaid": "^11.0.0",
"browserslist-config-jaid-node": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.27.0",
"eslint-config-jaid": "^1.49.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"tmp-promise": "^2.0.2",
"webpack": "^5.37.1",
"webpack-config-jaid": "12.2.0"
},
"scripts": {
"clean": "rimraf dist/",
"babel:prod": "rimraf dist/transpiled/production && NODE_ENV=production babel --out-dir dist/transpiled/production --source-maps true src",
"babel:dev": "rimraf dist/transpiled/development && NODE_ENV=development babel --out-dir dist/transpiled/development src",
"babel:test": "rimraf dist/transpiled/test && NODE_ENV=test babel --out-dir dist/transpiled/test src",
"build:prod": "NODE_ENV=production webpack",
"build:dev": "NODE_ENV=development webpack",
"test": "npm run build:prod && NODE_ENV=production MAIN=dist/package/production jest --runInBand",
"test:coverage": "npm run test:dev -- --coverage --json --outputFile=dist/jest/stats.json",
"test:dev": "NODE_ENV=test jest --runInBand",
"test:debug": "DEBUG=\"$(basename $PWD),$(basename $PWD):*\" NODE_ENV=test node --inspect=9229 node_modules/jest/bin/jest.js --runInBand",
"prepareActionJest": "npm run build:prod"
},
"name": "jsdoc-tsd-webpack-plugin",
"description": "Generates project homepages and a TypeScript definition files with Webpack.",
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/jsdoc-tsd-webpack-plugin"
},
"homepage": "https://github.com/Jaid/jsdoc-tsd-webpack-plugin",
"keywords": [
"compiler",
"documentation",
"documentation-generator",
"ecmascript",
"esdoc",
"html-documentation",
"javascript",
"jsdoc",
"jsdoc-plugin",
"publish",
"static-site",
"static-site-generator",
"tsd",
"typescript",
"typescript-definition",
"typescript-definitions",
"webpack",
"webpack-plugin"
],
"type": "module"
}