-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.81 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
{
"name": "east-migration-progress-indicator-helper",
"version": "1.1.0",
"description": "East plugin which provides migration helper to log progress",
"main": "lib/index.js",
"scripts": {
"testSpecified": "tap --reporter spec --no-coverage --color --timeout 10 --bail --jobs-auto",
"testWithNode": "for file in `find test -name *.js`; do node \"$file\" || exit 1; done;",
"test": "npm run testSpecified test",
"makeTestSnapshots": "TAP_SNAPSHOT=1 npm run testSpecified test",
"makeCodeCoverageDetailReport": "npm run testSpecified test -- --reporter dot --coverage --coverage-report html --no-browser test && echo \"*** Code coverage report done, checkout ./coverage dir\"",
"makeCodeCoverageSummaryReport": "npm run testSpecified test -- --reporter dot --coverage --coverage-report text-summary test | sed -re 's/(Statements|Branches|Functions|Lines)/\\1 code coverage/g'",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okv/east-migration-progress-indicator-helper.git"
},
"keywords": [
"east",
"migrate",
"migration",
"database",
"db",
"progress",
"indicator",
"helper"
],
"author": "Oleg Korobenko <oleg.korobenko@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okv/east-migration-progress-indicator-helper/issues"
},
"homepage": "https://github.com/okv/east-migration-progress-indicator-helper#readme",
"peerDependencies": {
"east": ">=1.2.0-rc.1 <3.0.0"
},
"devDependencies": {
"coveralls": "3.0.6",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.18.2",
"expect.js": "0.3.1",
"tap": "12.7.0"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"deprecate": "1.1.1",
"progress": "2.0.3"
}
}