forked from chen1415/extra-data-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "extra-data-types",
"version": "4.0.0",
"description": "some frequently used ts data types",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build-pr": "npm run format && npm run lint && npm run build",
"test": "jest --config jestconfig.json"
},
"main": "src/index.js",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chen1415/extra-data-types.git"
},
"keywords": [
"typescript",
"data-type",
"ts",
"email",
"email-type"
],
"author": "haochen1993",
"license": "MIT",
"bugs": {
"url": "https://github.com/chen1415/extra-data-types/issues"
},
"homepage": "https://github.com/chen1415/extra-data-types#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"babel-jest": "^28.0.3",
"codecov": "^3.8.3",
"jest": "^28.0.3",
"prettier": "^2.6.2",
"regenerator-runtime": "^0.13.9",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"typescript": "^4.9.5"
}
}