-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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": "@js-migrations/mongo",
"version": "0.0.0-development",
"description": "Implementation of the js-migrations RepoFacade using Mongo.",
"repository": {
"type": "git",
"url": "https://github.com/js-migrations/mongo"
},
"author": "js-migrations",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "tslint --project ./tsconfig.json",
"test": "mocha $(find dist -name '*.test.js') --exit",
"cover": "nyc npm test",
"duplication": "jscpd",
"clean": "rimraf dist",
"semantic-release": "ht2-release-public-circleci-lib"
},
"nyc": {
"lines": 100,
"check-coverage": true
},
"dependencies": {
"@js-migrations/core": "^6.2.3",
"lodash": "^4.17.10",
"make-error": "^1.3.4",
"mongodb": "^3.1.6"
},
"devDependencies": {
"@ht2-labs/semantic-release": "1.1.94",
"@ht2-labs/typescript-project": "2.0.45",
"@types/dotenv": "4.0.3",
"@types/lodash": "4.14.144",
"@types/mocha": "5.2.7",
"@types/mongodb": "3.3.6",
"@types/node": "8.10.55",
"@types/source-map-support": "0.5.0",
"assert-rejects": "0.1.1",
"dotenv": "5.0.1",
"jscpd": "0.6.25",
"mocha": "5.2.0",
"nyc": "11.9.0",
"rimraf": "2.7.1",
"source-map-support": "0.5.13"
},
"publishConfig": {
"access": "public"
}
}