This repository has been archived by the owner on Nov 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "@pct-org/updater",
"version": "1.2.1",
"description": "Updater of PCT environment",
"repository": {
"type": "git",
"url": "https://github.com/pct-org/updater.git"
},
"license": "MIT",
"files": [
"/dist/**"
],
"main": "./dist/updater.js",
"module": "./dist/updater.esm.js",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"postinstall": "yarn build",
"start": "cross-env NODE_ENV=production node ./dist/updater.js",
"start:debug": "yarn start:dev --inspect-brk",
"start:dev": "cross-env DEBUG=@pct-org/* babel-node ./src/run.js",
"pretest": "npm run build",
"test": "echo 'RUN TESTS'",
"test:watch": "echo 'RUN TESTS'"
},
"dependencies": {
"cron-parser": "^2.13.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"node-cron": "^2.0.3",
"semver-max": "^1.0.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/node": "7.8.7",
"@babel/plugin-external-helpers": "7.8.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-export-default-from": "7.8.3",
"@babel/plugin-proposal-export-namespace-from": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/plugin-transform-strict-mode": "7.8.3",
"@babel/preset-env": "7.9.5",
"@babel/preset-flow": "7.9.0",
"@babel/register": "7.9.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-vixo": "^2.0.2",
"husky": "4.2.5",
"rollup": "1.21.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-uglify": "6.0.4",
"standard-version": "7.1.0",
"uglify-es": "^3.3.4"
},
"engines": {
"node": ">=7.10.1"
}
}