-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.29 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
{
"name": "parse-dotenv",
"version": "2.1.0",
"description": "Zero dependency .env to object parser",
"source": "lib/parse-dotenv.ts",
"main": "dist/parse-dotenv.js",
"module": "dist/parse-dotenv.mjs",
"types": "dist/parse-dotenv.d.ts",
"scripts": {
"build": "npm run clean && babel lib -d build --extensions .ts",
"bundle": "npm run build && microbundle -o dist -f es,cjs --target node --compress",
"clean": "rimraf build dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc --reporter=html --reporter=text mocha",
"prepare": "npm run bundle",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeshifu/parse-dotenv.git"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"keywords": [
"env",
"env object",
"parse env",
"env parser",
"dotenv",
"dotenv parser"
],
"author": "Luqman Olushi <[email protected]> (https://codeshifu.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeshifu/parse-dotenv/issues"
},
"homepage": "https://github.com/codeshifu/parse-dotenv#readme",
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-typescript": "7.3.3",
"@babel/register": "7.4.0",
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@types/sinon": "7.0.11",
"@types/sinon-chai": "3.2.2",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.6.0",
"babel-eslint": "9.0.0",
"chai": "4.2.0",
"coveralls": "3.0.3",
"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",
"microbundle": "0.11.0",
"mocha": "6.2.2",
"np": "3.1.0",
"nyc": "14.1.1",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"rollup": "1.9.0",
"sinon": "7.3.1",
"sinon-chai": "3.3.0",
"ts-node": "8.0.3",
"typescript": "3.3.3"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"**/lib/*.ts"
]
}
}