-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"main": "lib/index.js",
"types": "lib/index.d.ts",
"version": "0.1.1",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint .",
"build": "tsc",
"check": "npm run build && npm run test && npm run coverage && npm run lint",
"clean": "rm -rf lib coverage",
"prebuild": "npm run clean",
"pretest": "npm run build",
"docs:generate": "cat support/README.md > README.md && jsdoc2md lib/index.js >> README.md",
"docs:commit": "git add README.md support && git diff-index --quiet HEAD || git commit -m \"update documentation\"",
"docs": "npm run docs:generate && npm run docs:commit",
"prepublishOnly": "npm run build && npm run docs"
},
"files": [
"lib"
],
"name": "@specialblend/react-process-env",
"description": "express utility to safely inject variables from process.env (node.js) into window.env (react)",
"repository": {
"type": "git",
"url": "git+https://github.com/specialblend/react-process-env.git"
},
"keywords": [
"react",
"process",
"env"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/specialblend/react-process-env/issues"
},
"homepage": "https://github.com/specialblend/react-process-env#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@specialblend/eslint-config": "^0.4.4",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"jest-extended": "^0.11.5",
"jsdoc-to-markdown": "^5.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/cheerio": "^0.22.16",
"@types/ramda": "^0.26.41",
"cheerio": "^1.0.0-rc.3",
"ramda": "^0.26.1"
}
}