-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "process-envify",
"version": "2.0.0",
"description": "A process env helper for injecting strings.",
"main": "./dist/process-envify.umd.cjs",
"module": "./dist/process-envify.js",
"types": "./dist/process-envify.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/process-envify.js",
"require": "./dist/process-envify.umd.cjs"
}
},
"scripts": {
"test": "vitest --coverage",
"build": "vite build",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/process-envify.git"
},
"keywords": [
"process.env",
"Vite",
"Vue CLI",
"Rollup",
"Webpack",
"Gulp"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/process-envify/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/process-envify#readme",
"devDependencies": {
"@vitest/coverage-c8": "^0.23.4",
"typescript": "^4.8.2",
"vite": "^3.1.3",
"vite-plugin-dts": "^1.5.0",
"vitest": "^0.23.1"
}
}