-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.71 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.71 KB
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
73
74
75
76
77
{
"name": "nullable-ts",
"version": "1.3.0",
"author": "Michael Bond",
"description": "Nullable type and helper functions for typescript",
"homepage": "https://github.com/MichaelRBond/nullable-ts#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p ./tsconfig.json",
"prepublish": "npm run build",
"test": "CONFIG_ENV=test jest --coverage --runInBand 'test/.*\\.test.ts$'",
"verify": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelRBond/nullable-ts.git"
},
"keywords": [
"null",
"nullable",
"optional",
"undefined",
"isnull",
"isnotnull",
"typescript"
],
"bugs": {
"url": "https://github.com/MichaelRBond/nullable-ts/issues"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"jest": {
"coverageDirectory": ".build/coverage",
"collectCoverage": false,
"collectCoverageFrom": [
"src/*.ts",
"!**/node_modules/**"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"transform": {
".(ts)": "ts-jest"
},
"testRegex": ".*\\.test.ts$",
"moduleDirectories": [
"<rootDir>/node_modules",
"<rootDir>/src/"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist"
],
"coverageReporters": [
"text",
"text-summary"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testEnvironment": "node"
}
}