forked from luqmanoop/sync-dotenv-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.07 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
{
"name": "@shpe-utdallas/sync-dotenv-slack",
"version": "0.1.0",
"description": "Keep .env in sync with teammates on Slack",
"main": "dist/cli.js",
"scripts": {
"clean": "rimraf dist",
"bundle": "parcel build cli.ts --target node --no-cache --no-source-maps",
"build": "npm-run-all --parallel clean bundle",
"build:start": "npm run build -- start",
"dev": "nodemon --ext ts,json --exec 'npm run build && node dist/cli.js'",
"start": "node dist/cli.js",
"test": "jest",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"release": "npm run build && np"
},
"bin": {
"envbot": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SHPE-UTDallas/sync-dotenv-slack.git"
},
"keywords": [
".env",
"slack",
"dotenv",
"environment variables",
"sync env slack",
"sync dotenv slack"
],
"files": [
"readme.md",
"dist"
],
"author": "Luqman Olushi <[email protected]> (https://github.com/codeshifu)",
"contributors": [
{
"name": "Luqman Olushi",
"url": "https://github.com/codeshifu"
},
{
"name": "Kizito Akhilome",
"url": "https://github.com/akhilome"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/codeshifu/sync-dotenv-slack/issues"
},
"homepage": "https://github.com/codeshifu/sync-dotenv-slack#readme",
"devDependencies": {
"@types/dotenv": "6.1.1",
"@types/jest": "24.0.19",
"@types/ora": "3.2.0",
"@types/pkg-conf": "3.0.0",
"@types/temp-write": "4.0.0",
"coveralls": "3.0.7",
"jest": "24.9.0",
"nodemon": "1.19.3",
"np": "3.1.0",
"npm-run-all": "4.1.5",
"parcel-bundler": "1.12.3",
"parcel-plugin-shebang": "1.2.8",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"typescript": "3.6.3"
},
"dependencies": {
"@slack/web-api": "5.2.0",
"axios": "0.19.0",
"dotenv": "8.1.0",
"ora": "4.0.2",
"parse-dotenv": "2.0.1",
"pkg-conf": "3.1.0",
"temp-write": "4.0.0"
}
}