-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
106 lines (106 loc) · 2.55 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
{
"name": "sync-dotenv",
"version": "2.7.0",
"description": "Keep your .env in sync with .env.example",
"keywords": [
".env",
".env.example",
"dotenv",
"environment variables",
"sync env",
"sync env.example"
],
"source": "lib/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"homepage": "https://github.com/codeshifu/sync-dotenv#readme",
"bugs": {
"url": "https://github.com/codeshifu/sync-dotenv/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeshifu/sync-dotenv.git"
},
"license": "MIT",
"author": "Luqman Olushi <olushilukmon03@gmail.com> (https://codeshifu.github.io/)",
"directories": {
"lib": "lib"
},
"bin": {
"sync-dotenv": "dist/index.js"
},
"engines": {
"node": ">= 16"
},
"scripts": {
"add-contributor": "all-contributors add",
"build": "npm-run-all clean start",
"bundle": "npm-run-all clean parcel",
"clean": "rimraf dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"parcel": "parcel build",
"release": "npm run bundle && np",
"start": "node dist/index.js",
"start:dev": "nodemon --watch lib -e ts --exec npm run build",
"test": "nyc --reporter=html --reporter=text mocha",
"test:watch": "nodemon --watch test -e .ts --exec npm test"
},
"devDependencies": {
"@parcel/packager-ts": "2.3.2",
"@parcel/transformer-typescript-types": "2.3.2",
"@types/chai": "4.1.7",
"@types/execa": "0.9.0",
"@types/globby": "9.1.0",
"@types/meow": "5.0.0",
"@types/mocha": "5.2.6",
"@types/sinon": "7.0.11",
"@types/sinon-chai": "3.2.2",
"all-contributors-cli": "6.2.0",
"babel-eslint": "9.0.0",
"chai": "4.2.0",
"coveralls": "3.0.3",
"dotenv": "7.0.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "5.0.3",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.6.0",
"mocha": "6.1.4",
"nodemon": "1.18.11",
"np": "3.1.0",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"parcel": "^2.3.2",
"parcel-plugin-shebang": "^1.2.8",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"sinon": "7.3.1",
"sinon-chai": "3.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"globby": "^11.1.0",
"meow": "5.0.0",
"parse-dotenv": "2.1.0",
"pkg-conf": "^3.1.0"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"**/lib/*.ts"
]
}
}