-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "@mmstudio/schedule",
"version": "3.0.1",
"description": "Node.js schedule service.",
"scripts": {
"dev": "cp ./tests/s001.js ./dist/ && npm start",
"start": "tsc && node ./dist/index.js",
"watch": "tsc -w & ava --watch ./tests/*.js",
"clean": "del-cli ./dist/",
"lint": "eslint ./src/**/*.ts",
"compile": "tsc",
"build": "npm run clean && npm run lint && npm run compile",
"up": "git pull git@github.com:mm-core/base.git cjs",
"release": "npm run build && standard-version && git push --follow-tags origin main && npm publish"
},
"bin": {
"mm-schedule": "./dist/index.js"
},
"repository": {
"type": "https+git",
"url": "https://github.com/mm-core/schedule.git"
},
"homepage": "https://01factory.github.io",
"main": "dist/index.js",
"keywords": [
"mm",
"mmstudio",
"01",
"零壹",
"微工厂",
"原子操作",
"控件",
"框架"
],
"people fields": {
"author": {
"name": "taoqf",
"email": "tao_qiufeng@126.com"
},
"contributors": []
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"dotenv-load": "2.0.1",
"log4js": "6.7.1",
"node-schedule": "2.1.0"
},
"devDependencies": {
"@types/dotenv-load": "^2.0.0",
"@types/node": "^18.17.5",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"ava": "^5.3.1",
"del-cli": "^5.0.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-ts-lambdas": "^1.2.3",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"standard-version": "latest",
"typescript": "^4.9.5"
}
}