-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.95 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@kzok/valueobject-ts",
"publishConfig": {
"access": "public"
},
"description": "Tiny typesafe value object library for TypeScript",
"version": "2.0.1",
"author": "kzok (https://github.com/kzok)",
"keywords": [
"TypeScript",
"typesafe",
"value-object"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kzok/valueobject.ts.git"
},
"license": "MIT",
"homepage": "https://github.com/kzok/valueobject.ts",
"files": [
"lib",
"README.md",
"package.json",
"package-lock.json",
"LICENSE"
],
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@wessberg/rollup-plugin-ts": "^1.3.2",
"codecov": "^3.7.2",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"release-it": "^13.6.6",
"rimraf": "^3.0.2",
"rollup": "^2.23.1",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^26.1.4",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"scripts": {
"build": "rimraf ./lib && rollup -c",
"test": "jest",
"type-check": "tsc --noEmit",
"fmt": "npm run prettier && npm run eslint",
"prettier": "prettier --write **/*.{js,json,md}",
"eslint": "eslint --fix src/**/*.ts",
"check": "npm run test-all && npm run type-check",
"test-all": "jest --coverage",
"prepublishOnly": "npm prune && npm run check && npm run build",
"release": "release-it"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}