-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.19 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
{
"name": "sfm",
"version": "1.5.2",
"license": "MIT",
"bin": {
"sfm": "./cli"
},
"main": "lib/index.js",
"files": [
"lib/**/*",
"cli"
],
"description": "simply fabulous migrations for postgresql",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test:watch": "nodemon -q -e ts,sql,js --exec \"yarn test\" --watch src --watch test",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/davidmfoley/node-sfm.git"
},
"author": "[email protected]",
"dependencies": {
"chalk": "^1.1.1"
},
"peerDependencies": {
"pg": "^8.0.0"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.4",
"@types/pg": "^8.6.5",
"async": "^3.0.1",
"mocha": "^10.0.0",
"mocha-concise-reporter": "1.x",
"nodemon": "^3.1.7",
"pg": "^8.7.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"mocha": {
"recursive": true,
"reporter": "mocha-concise-reporter",
"spec": [
"test/*.test.ts"
],
"extension": [
"ts"
],
"require": [
"source-map-support/register",
"ts-node/register"
]
}
}