-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "@js-migrations/core",
"version": "1.0.0",
"description": "Provides a common service for migrations in JavaScript.",
"repository": {
"type": "git",
"url": "https://github.com/js-migrations/core"
},
"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": {
"lodash": "^4.17.10",
"make-error": "^1.3.4"
},
"devDependencies": {
"@ht2-labs/semantic-release": "1.1.90",
"@ht2-labs/typescript-project": "1.1.0",
"@types/lodash": "4.14.141",
"@types/mocha": "5.2.7",
"@types/node": "8.10.54",
"@types/source-map-support": "0.5.0",
"assert-rejects": "0.1.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"
}
}