-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.33 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
{
"name": "@naxmefy/env",
"version": "3.0.1",
"description": "env vars util",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": {
"name": "MRW Neundorf",
"email": "[email protected]",
"url": "http://www.nax.me"
},
"homepage": "https://github.com/naxmefy/node-env",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/naxmefy/node-env/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/naxmefy/node-env.git"
},
"engines": {
"node": ">=4.2"
},
"scripts": {
"build": "tsc",
"lint": "tslint src test",
"lint:fix": "npm run tslint -- --fix",
"prepublish": "npm run build",
"test": "mocha",
"test:coverage": "nyc npm test"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.4",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^8.0.2",
"tslint": "^5.2.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3"
},
"dependencies": {
"glob-to-regexp": "^0.4.0",
"lodash.isfunction": "^3.0.9"
}
}