-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 909 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "chunkier",
"version": "1.0.0",
"description": "chunk array by some condition",
"license": "MIT",
"repository": "lucamattiazzi/chunk-by",
"author": {
"name": "Luca Mattiazzi",
"email": "[email protected]",
"url": "https://grokked.it"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"main": "dist/index.js",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"ava": "^2.1.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"xo": "^0.24.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn build",
"pre-push": "yarn test"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "./tests/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}