-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.09 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 3.09 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
{
"private": true,
"name": "@dr-js/dev",
"version": "0.5.14",
"description": "A collection of strange functions, for development",
"author": "dr-js",
"license": "MIT",
"repository": "github:dr-js/dr-dev",
"bin": {
"dr-dev": "bin/index.js",
"DRD": "bin/index.js"
},
"scripts": {
"// repo ========================": "",
"version-bump": "node ./output-gitignore/bin --version-bump-git-branch --git-commit --debug",
"tag-push": "node ./output-gitignore/bin --version-bump-push-check --git-commit",
"check-outdated": "node ./output-gitignore/bin --check-outdated ./resource",
"check-outdated-write-back": "npm run check-outdated -- --write-back && npm run script-generate-spec",
"check-outdated-self": "node ./output-gitignore/bin --check-outdated",
"// script ======================": "",
"script-pack": "node -r @babel/register ./script/pack.js pack unsafe",
"script-pack-test": "node -r @babel/register ./script/pack.js verbose pack test",
"script-publish": "node -r @babel/register ./script/pack.js pack publish",
"script-generate-spec": "node -r @babel/register ./script/generateSpec.js",
"// build =======================": "",
"build-library": "babel ./source --out-dir ./output-gitignore/library --ignore source/browser/",
"build-library-dev": "dr-dev --EE BABEL_ENV=dev -E -- npm run build-library -- --watch",
"build-module": "dr-dev --EE BABEL_ENV=module -E -- babel ./source --out-dir ./output-gitignore/module",
"build-browser": "node -r @babel/register ./script/webpack production profile",
"build-bin": "dr-dev --EE BABEL_ENV=outputBin -E -- babel ./source-bin --out-dir ./output-gitignore/bin",
"build-bin-dev": "dr-dev --EE BABEL_ENV=dev-outputBin -E -- babel ./source-bin --out-dir ./output-gitignore/bin --watch",
"// test ========================": "",
"test-T": "dr-dev --EE BABEL_ENV=dev -E -- node ./output-gitignore/bin --TR @babel/register --TFS .test.js -T",
"test-T-output": "node ./output-gitignore/bin --TFS .test.js -T",
"test-dev": "npm run test-T -- source/common/packageVersion.test.js",
"test-source": "npm run test-T -- source/",
"test-output-library": "npm run test-T-output -- output-gitignore/library/",
"test-output-module": "npm run test-T -- output-gitignore/module/",
"test-output-bin": "npm run test-T-output -- output-gitignore/bin/",
"// =============================": "",
"analyze-stat": "npx webpack-bundle-analyzer .temp-gitignore/profile-stat.json output-gitignore/browser",
"lint": "eslint ./source/ ./source-bin/ ./resource/ ./script/",
"test": "npm run script-pack-test",
"prepack": "echo \"Error: pack with script-*\" && exit 1"
},
"engines": {
"node": ">=14.18",
"npm": ">=6.14"
},
"dependencies": {
"@dr-js/core": "^0.5.14 || ^0.5.15-dev.0 || ^0.5.16-dev.0"
},
"devDependencies": {
"@dr-js/dev": "^0.5.14-dev.0",
"@dr-js/dev-web": "^0.5.14-dev.0",
"@min-pack/ssh2": "^1.15.0",
"eslint-plugin-n": "=15.7.0",
"ssh2": "^1.15.0",
"yaml": "^2.4.2",
"yaml-legacy": "npm:yaml@^1.10.2"
},
"sideEffects": false
}