-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "@fmtk/migrations",
"version": "0.2.0",
"description": "Helper library for database migrations",
"main": "lib/index.js",
"repository": "https://github.com/futurematik/migrations",
"author": "Gordon Leigh <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@fmtk/graph": "^0.2.1"
},
"files": [
"lib",
"!.DS_Store",
"!**/testutil/",
"!*.test.*",
"!**/__test__/"
],
"scripts": {
"build": "yarn clean && yarn compile && yarn lint && yarn test",
"compile": "tsc",
"bumpfeat": "npm version minor && npm publish",
"bumpfix": "npm version patch && npm publish",
"bumpmajor": "npm version major && npm publish",
"clean": "rm -rf lib/",
"lint": "eslint \"src/**\"",
"postversion": "git push --follow-tags",
"prepare": "npm run build",
"preversion": "npm run build",
"test": "jest"
}
}