-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "@dendra-science/worker-tasks-email",
"version": "2.5.0",
"description": "Worker tasks for importing email data.",
"license": "BSD-2-Clause-FreeBSD",
"author": "J. Scott Smith <scott@newleafsolutionsinc.com>",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DendraScience/dendra-worker-tasks-email.git"
},
"scripts": {
"babel": "babel src -d dist",
"build": "npm run lint && npm run clean && npm run babel",
"clean": "rm -rf dist/*",
"lint": "eslint src",
"lint-test": "eslint test",
"test": "npm run lint-test && NODE_ENV=test mocha test --recursive --use_strict",
"test-gc": "npm run lint-test && NODE_ENV=test mocha test -gc --recursive --use_strict",
"test:build": "npm run build && npm run test",
"test:watch": "chokidar --initial 'src/**/*.js' 'test/**/*.js' -c 'npm run test:build'"
},
"engines": {
"node": ">=12.14.x"
},
"dependencies": {
"imapflow": "^1.0.56",
"node-nats-streaming": "0.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@dendra-science/task-machine": "2.5.0",
"@feathersjs/feathers": "^4.5.8",
"chai": "^4.2.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"feathers-memory": "^4.1.0",
"mocha": "^8.1.3",
"prettier": "^2.1.1"
},
"optionalDependencies": {}
}