-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.41 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
{
"webpackConfigJaid": "cli",
"version": "1.3.1",
"author": "Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid)",
"dependencies": {
"@absolunet/fsp": "^1.6.2",
"archiver": "^4.0.1",
"chalk": "^4.0.0",
"debug": "^4.1.1",
"execa": "^4.0.0",
"figures": "^3.2.0",
"globby": "^11.0.0",
"jaid-logger": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"ora": "^4.0.3",
"pkg": "^4.4.7",
"promise-sequence": "^0.3.1",
"stringify-author": "^0.1.3",
"which-promise": "^1.0.0",
"winston": "^3.2.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"acorn": "^7.1.1",
"babel-jest": "^25.3.0",
"babel-preset-jaid": "^8.0.0",
"browserslist-config-jaid-node": "^2.2.2",
"caniuse-lite": "^1.0.30001042",
"coffee": "^5.2.2",
"eslint": "^6.8.0",
"eslint-config-jaid": "^1.49.0",
"jest": "^25.3.0",
"rimraf": "^3.0.2",
"webpack": "^4.42.1",
"webpack-config-jaid": "^11.8.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/cli.js 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": "compile-release",
"description": "CLI wrapper for zeit/pkg.",
"funding": "https://github.com/sponsors/jaid",
"repository": {
"type": "git",
"url": "https://github.com/jaid/compile-release"
},
"homepage": "https://github.com/Jaid/compile-release",
"keywords": [
"cli",
"compile",
"compiler",
"github-release",
"node-packager",
"packager",
"packaging",
"pkg",
"release",
"tool",
"util",
"utility",
"zeit-pkg"
],
"type": "module"
}