-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "merkel",
"version": "0.0.0-development",
"description": "Handles your database migration crisis",
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/merkel"
},
"bin": "./bin/merkel",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w -p .",
"clean": "rimraf dist",
"lint": "npm run tslint && npm run prettier",
"tslint": "tslint -c tslint.json -p tsconfig.json \"src/**/*.ts\"",
"prettier": "prettier --config ./prettier.config.js --write --list-different '**/*.{ts,js?(on),md}'",
"typedoc": "typedoc --module commonjs --target es2015 --mode modules --ignoreCompilerErrors --readme none --out typedoc src",
"test": "mocha \"dist/test/**/*.test.js\" --exit --timeout 5000 --require source-map-support/register",
"cover": "nyc --all --require source-map-support/register mocha --exit --timeout 5000 \"dist/test/**/*.test.js\"",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"author": "Felix Becker <[email protected]>",
"license": "ISC",
"dependencies": {
"chalk": "^2.3.0",
"inquirer": "^6.0.0",
"mkdirp": "^0.5.1",
"mz": "^2.4.0",
"sql-template-strings": "^2.2.0",
"update-notifier": "^2.3.0",
"uuid": "^3.1.0",
"yargs": "^12.0.0"
},
"devDependencies": {
"@sourcegraph/prettierrc": "^2.0.0",
"@sourcegraph/tslint-config": "^12.0.0",
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/del": "^3.0.1",
"@types/globby": "^6.1.0",
"@types/inquirer": "0.0.42",
"@types/mkdirp": "^0.5.1",
"@types/mocha": "^5.0.0",
"@types/mz": "0.0.32",
"@types/node": "^9.6.14",
"@types/pg": "^7.4.8",
"@types/sinon": "^5.0.0",
"@types/uuid": "^3.4.3",
"@types/yargs": "^12.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cz-conventional-changelog": "^2.0.0",
"del": "^3.0.0",
"husky": "^0.14.3",
"mocha": "^5.1.1",
"nyc": "^13.0.0",
"pg": "^7.4.3",
"prettier": "1.12.1",
"rimraf": "^2.5.4",
"semantic-release": "^15.4.0",
"sinon": "^7.0.0",
"source-map-support": "^0.5.5",
"tslint": "^5.10.0",
"typedoc": "^0.11.0",
"typescript": "^3.0.0",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/test/**/*.js",
"dist/cli.js"
]
}
}