-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
40 lines (40 loc) · 1008 Bytes
/
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
{
"name": "typescript-optional",
"version": "3.0.0-alpha.1",
"description": "Optional (like Java) implementation in TypeScript",
"keywords": [
"java",
"optional",
"typescript"
],
"author": "bromne <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bromne/typescript-optional.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint lib/**/*.ts test/**/*.ts",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs/",
"test": "jest",
"test:coverage": "jest --coverage",
"codecov": "codecov"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"codecov": "^3.8.3",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"tslint": "^5.12.0",
"typescript": "^3.9.10"
},
"jest": {
"preset": "ts-jest"
}
}