-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.6 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": "modern-v",
"version": "0.1.8",
"description": "Most easy way to get and set the mode in any situation.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"types": "dist/index.d.ts",
"scripts": {
"rollup": "rollup -c",
"test": "jest",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/just-do-halee/modern-v.git"
},
"keywords": [
"env",
"mode",
"simple",
"typescript",
"NODE_ENV",
"development",
"production",
"test",
"application",
"configuration",
"config"
],
"author": "just-do-halee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/just-do-halee/modern-v/issues"
},
"homepage": "https://github.com/just-do-halee/modern-v#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.17",
"dotenv": "^16.0.0",
"jest": "^28.1.0",
"rollup": "^2.66.1",
"rollup-plugin-dts": "^4.1.0",
"ts-jest": "^28.0.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "tests",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}