forked from crookedneighbor/csv-stringify-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 990 Bytes
/
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
{
"name": "csv-stringify-as-promised",
"version": "3.0.1",
"description": "csv-stringify wrapped in a promise",
"main": "lib/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint lib test && dtslint lib",
"test-mocha": "./node_modules/.bin/mocha",
"test": "npm run lint && mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oprogramador/csv-stringify-as-promised.git"
},
"keywords": [
"csv",
"promise"
],
"license": "MIT",
"dependencies": {
"csv-stringify": "^5.6.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.0",
"bluebird": "^3.7.2",
"chai": "^4.3.4",
"dtslint": "^4.0.8",
"eslint-config-airbnb-improved": "^5.0.0",
"mocha": "^8.3.2",
"testdouble": "^3.16.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=v14.16.0"
},
"types": "./lib/index.d.ts"
}