-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 993 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 993 Bytes
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
{
"name": "react-env-config",
"version": "1.0.0",
"description": "An environment variables helper for React applications (created by CRA)",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prepare" : "npm run build",
"prepublishOnly" : "npm test",
"test": "jest --config jestconfig.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arvindkumarbadwal/react-env-config.git"
},
"keywords": [
"react env",
"react config",
"react dotenv",
"react env config"
],
"author": "Arvindkumar Badwal <arvindkumar.b@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arvindkumarbadwal/react-env-config/issues"
},
"homepage": "https://github.com/arvindkumarbadwal/react-env-config#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
}
}