-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "mattermost-etl",
"version": "1.0.0",
"description": "An ETL framework to migrate data to Mattermost",
"author": "Michael DeBonis",
"license": "MIT",
"homepage": "https://github.com/Brightscout/mattermost-etl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Brightscout/mattermost-etl.git"
},
"bugs": {
"url": "https://github.com/Brightscout/mattermost-etl/issues"
},
"dependencies": {
"bunyan": "^1.8.10",
"joi": "^10.6.0",
"lodash": "^4.17.4",
"mssql": "^4.0.4",
"slug": "^0.9.1",
"xmldoc": "^1.1.0"
},
"devDependencies": {
"chai": "^4.0.2",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"sinon": "^2.3.4"
},
"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": "istanbul cover _mocha lib -- --recursive",
"start": "node index.js | bunyan"
}
}