-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.83 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
{
"name": "hopi",
"version": "0.2.0-beta.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/itajaja/hopi.git"
},
"author": "Giacomo Tagliabue",
"license": "MIT",
"scripts": {
"build": "4c build src",
"format": "4c format src './*'",
"lint": "4c lint src './*'",
"prepublishOnly": "yarn run build",
"release": "4c release",
"tdd": "jest --watch",
"test": "yarn lint && yarn typecheck && jest",
"testonly": "jest",
"typecheck": "tsc --noEmit && tsc --noEmit -p tests"
},
"publishConfig": {
"access": "public"
},
"prettier": "@4c/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"yarn 4c lint --fix",
"git add"
]
},
"jest": {
"preset": "@4c/jest-preset",
"testEnvironment": "node",
"testMatch": [
"**/tests/*.test.ts"
]
},
"release": {
"publishDir": "lib"
},
"devDependencies": {
"@4c/babel-preset": "^7.1.0",
"@4c/cli": "^2.0.1",
"@4c/jest-preset": "^1.4.5",
"@4c/prettier-config": "^1.1.0",
"@4c/tsconfig": "^0.3.1",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^26.0.8",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^3.7.1",
"eslint-config-4catalyzer": "^1.1.0",
"eslint-config-4catalyzer-jest": "^2.0.4",
"eslint-config-4catalyzer-typescript": "^1.1.6",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.0.9",
"jest": "^26.0.0",
"lint-staged": "^9.4.2",
"prettier": "^2.0.1",
"typescript": "^3.7.5"
},
"optionalDependencies": {
"@types/luxon": "^1.24.3",
"luxon": "^1.24.1"
}
}