forked from Brightscout/mattermost-import-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "mattermost-import-csv",
"version": "1.0.0",
"description": "A CSV to Bulk Import JSON Converter",
"author": "Michael DeBonis",
"license": "MIT",
"homepage": "https://github.com/Brightscout/mattermost-import-csv#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Brightscout/mattermost-import-csv.git"
},
"bugs": {
"url": "https://github.com/Brightscout/mattermost-import-csv/issues"
},
"dependencies": {
"bunyan": "^1.8.10",
"csvtojson": "^2.0.10",
"joi": "^17.9.1"
},
"devDependencies": {
"chai": "^4.3.7",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^8.36.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.3"
},
"main": "index.js",
"scripts": {
"lint": "eslint *.js context lib --ext .js",
"test": "npm run lint && mocha lib --recursive",
"test-watch": "npm run test -- --watch",
"test-coverage": "nyc --reporter=lcov --reporter=json --reporter=text-summary mocha lib --recursive",
"start": "node index.js | bunyan"
},
"bin": {
"mmcsv2json": "./index.js"
}
}