This repository was archived by the owner on Jul 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 KB
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
{
"name": "knex-webpack-migration-source",
"version": "0.0.0-development",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"prepack": "yarn build",
"build": "yarn build:es2015 && yarn build:esm && yarn build:cjs",
"build:es2015": "tsc --module es2015 --target es2015 --lib es2015 --outDir dist/es2015 -p tsconfig.build.json",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm -p tsconfig.build.json",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs -p tsconfig.build.json",
"test": "jest",
"lint": "tslint -p .",
"verify": "yarn lint && yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sevenwestmedia-labs/knex-webpack-migration-source.git"
},
"keywords": [
"knex",
"migrations"
],
"author": "Jake Ginnivan",
"license": "MIT",
"bugs": {
"url": "https://github.com/sevenwestmedia-labs/knex-webpack-migration-source/issues"
},
"homepage": "https://github.com/sevenwestmedia-labs/knex-webpack-migration-source#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"knex": "^0.20.0",
"semantic-release": "^15.13.2",
"ts-jest": "^24.0.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.2"
},
"peerDependencies": {
"knex": "^0.16.3"
},
"dependencies": {
"@types/node": "^12.7.2",
"@types/webpack-env": "^1.13.6"
}
}