-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "east",
"description": "node.js database migration tool for mongodb, sqlite, postgres, mysql, couchbase",
"version": "2.0.3",
"author": "Oleg Korobenko <oleg.korobenko@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/okv/east.git"
},
"keywords": [
"migrate",
"migration",
"database",
"db",
"mongodb",
"sqlite",
"postgres",
"mysql",
"couchbase",
"couchdb"
],
"types": "lib/index.d.ts",
"main": "lib/index.js",
"scripts": {
"testSpecified": "tap --reporter spec --no-coverage --color --timeout 20 --bail --jobs-auto",
"test": "npm run testSpecified test",
"makeTestSnapshots": "TAP_SNAPSHOT=1 npm run testSpecified test",
"coverage": "c8 --reporter text-summary --reporter html --reporter lcov npm run testSpecified test -- --reporter dot",
"lintChangelog": "remark --rc-path .remarkrc-lintChangelog.js --frail > /dev/null CHANGELOG.md",
"lintTsMigrationTemplate": "tsc lib/migrationTemplate.ts --noEmit",
"lintTsTypes": "tsc lib/index.d.ts",
"lintJs": "eslint ./",
"lint": "npm run lintChangelog && npm run lintTsMigrationTemplate && npm run lintTsTypes && npm run lintJs"
},
"bin": {
"east": "bin/east.js"
},
"dependencies": {
"commander": "5.1.0",
"expressionify": "0.9.3",
"mhook": "1.0.1",
"p-map": "4.0.0",
"p-props": "4.0.0",
"p-timeout": "3.2.0",
"path-exists": "4.0.0",
"underscore": "1.12.1"
},
"devDependencies": {
"c8": "7.10.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"expect.js": "0.3.1",
"remark": "14.0.2",
"remark-changelog": "1.2.1",
"remark-cli": "10.0.1",
"remark-lint-maximum-line-length": "2.0.0",
"remark-preset-lint-consistent": "3.0.0",
"remark-preset-lint-recommended": "4.0.0",
"tap": "14.11.0",
"ts-node": "8.9.1",
"typescript": "3.8.3"
},
"engines": {
"node": ">=10.17.0"
}
}