-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.09 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
{
"name": "smart-tasks",
"version": "0.6.2",
"description": "smart-tasks is a task manager for NodeJS which can be configured with a configuration file. The base code comes from the following project : (https://github.com/arkerone/smart-container)",
"main": "./lib/ContainerBuilder.js",
"scripts": {
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"check": "No linter"
},
"author": "thewrath",
"license": "MIT",
"dependencies": {
"clone": "^2.1.2",
"path": "^0.12.7",
"smart-container": "^0.2.1"
},
"devDependencies": {
"coveralls": "^3.0.9",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"jest": "^24.9.0"
},
"keywords": [
"task",
"manager",
"service",
"scheduler",
"task scheduler",
"task manager"
],
"repository": {
"type": "git",
"url": "https://github.com/thewrath/smart-tasks"
},
"homepage": "https://github.com/thewrath/smart-tasks"
}