This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
111 lines (111 loc) · 3.16 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "slack-history-export",
"version": "0.0.0-development",
"description": "Command line module to export slack history",
"keywords": [
"slack",
"export",
"es6"
],
"homepage": "https://github.com/hisabimbola/slack-history-export#readme",
"bugs": {
"url": "https://github.com/hisabimbola/slack-history-export/issues"
},
"license": "MIT",
"author": "Abimbola Idowu <[email protected]> (http://hisabimbola.com)",
"main": "",
"repository": {
"type": "git",
"url": "https://github.com/hisabimbola/slack-history-export.git"
},
"bin": {
"slack-history-export": "bin/slack-history-export.js"
},
"preferGlobal": true,
"scripts": {
"test": "npm run build && cross-env NODE_ENV=test NODE_PATH=./src babel-node node_modules/.bin/tape test/*.spec.js test/**/*.spec.js | tap-spec",
"test:watch": "chokidar src test bin -c 'npm test'",
"build": "npm run clean && babel src -d lib",
"clean": "rimraf lib/* coverage",
"commit": "git-cz",
"prepublish": "npm run build",
"codecov": "cat ./coverage/lcov.info | codecov",
"coverage": "npm run lint && npm run clean && cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"check-coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
"local": "npm run clean && npm run build && node bin/slack-history-export.js",
"coverage:html": "npm run lint && cross-env NODE_ENV=test nyc --reporter=html npm test",
"lint": "./scripts/lint src test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "./scripts/lint-staged-files"
}
},
"eslintConfig": {
"extends": "commercetools",
"settings": {
"import/resolver": {
"node": {
"paths": [
"src/"
]
}
}
}
},
"files": [
"lib/",
"bin/"
],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.2.3",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.14.0",
"chokidar-cli": "^1.2.0",
"codecov": "^2.2.0",
"commitizen": "^2.8.6",
"cross-env": "^5.0.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-commercetools": "^6.0.0",
"eslint-formatter-pretty": "^1.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"ghooks": "^2.0.0",
"nyc": "^11.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"sinon": "^2.3.4",
"streamtest": "^1.2.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"tmp": "^0.0.31",
"validate-commit-msg": "^2.12.2"
},
"engines": {
"node": ">= 4.5.0"
},
"nyc": {
"include": [
"src/*.js"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"lodash": "^4.17.2",
"nconf": "^0.8.4",
"npmlog": "^4.0.2",
"slack": "^8.1.2",
"untildify": "^3.0.2",
"yargs": "^8.0.1"
}
}