-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 894 Bytes
/
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
{
"name": "file-task-runner",
"version": "1.0.1",
"description": "Easy file-based task runner",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/abnamrocoesd/file-task-runner.git"
},
"keywords": [
"task",
"job",
"migration"
],
"author": "Remco Hendriks, ABN AMRO Bank 2020",
"license": "MIT",
"nyc": {
"exclude": [
"chai-test/**",
"test/**"
],
"reporter": [
"html",
"text"
]
},
"bin": {
"run-file-tasks": "./bin/migrate.js"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2"
},
"dependencies": {
"commander": "^6.0.0"
}
}