-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
{
"name": "@pi-team-mn/envkey",
"version": "1.0.6",
"description": "Read an environment key or throw an error if it's not set",
"main": "lib/envkey.js",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.5",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"ts-node": "^8.0.2",
"tslint": "^5.13.0",
"typescript": "^3.3.3333"
},
"files": [
"lib/!(*.spec).js",
"lib/!(*.spec).d.ts"
],
"scripts": {
"build": "tsc && tslint -p tsconfig.json --format stylish -e \"src/*.spec.ts\" && npm run cover",
"lint": "tslint -p tsconfig.json --format stylish -e \"src/*.spec.ts\"",
"cover": "nyc npm run test",
"test": "mocha --require ts-node/register ./src/*.spec.ts",
"tsc": "tsc",
"watch": "mocha --watch --require ts-node/register --watch-extensions ts ./src/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pi-team-mn/envkey.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/pi-team-mn/envkey/issues"
},
"homepage": "https://github.com/pi-team-mn/envkey#readme",
"nyc": {
"check-coverage": true,
"lines": 70,
"statements": 70,
"functions": 70,
"branches": 70,
"include": [
"src/*.ts",
"src/**/*.ts"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"src/*.spec.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"html"
],
"all": true
}
}