-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "pg-insert-csv",
"version": "1.0.0",
"description": "Iterate over csv files and insert them into a postgres database",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/drg-adaptive/pg-insert-csv",
"bugs": "https://github.com/drg-adaptive/pg-insert-csv/issues",
"author": "Elisha Boozer <eboozer@dresources.com>",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.2",
"@semantic-release/npm": "^7.0.2",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"builtin-modules": "^3.1.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"jest": "^25.1.0",
"neat-csv": "^5.1.0",
"rollup": "^1.31.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"semantic-release": "^17.0.2",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"dependencies": {},
"scripts": {
"build": "yarn rollup -c",
"prepare": "yarn build",
"test": "jest --collectCoverage"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}