-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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
{
"name": "read-env",
"version": "2.0.0",
"description": "Transform environment variables into JSON object with sanitized values.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:yatki/read-env.git"
},
"files": [
"dist/",
"package.json",
"README.md",
"LICENCE"
],
"keywords": [
"env",
"environment variables",
"parse",
"JSON.parse",
"sanitize",
"process.env",
"config",
"conf",
"read"
],
"author": "Mehmet Yatkı",
"license": "MIT",
"bugs": {
"url": "https://github.com/yatki/read-env/issues"
},
"homepage": "https://github.com/yatki/read-env",
"scripts": {
"preversion": "npm run lint && npm test",
"prepublishOnly": "npm run lint && npm test && npm run build",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"lint": "eslint .",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"devDependencies": {
"@rollup/plugin-commonjs": "15.0.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@types/jest": "26.0.10",
"@types/node": "14.6.0",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"coveralls": "3.1.0",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"husky": "4.2.5",
"jest": "26.4.1",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"rollup": "2.26.4",
"rollup-plugin-terser": "7.0.0",
"rollup-plugin-typescript2": "0.27.2",
"ts-jest": "26.2.0",
"typescript": "4.0.2"
},
"dependencies": {
"@types/camelcase": "5.2.0",
"camelcase": "6.0.0"
}
}