-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.43 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
53
54
55
56
57
58
59
60
61
62
{
"name": "chuchote",
"version": "1.0.1",
"description": "Configurable JavaScript logger.",
"keywords": [
"logger"
],
"main": "dist/chuchote.cjs.js",
"module": "dist/chuchote.esm.js",
"browser": "dist/chuchote.umd.js",
"types": "dist/chuchote.d.ts",
"files": [
"dist"
],
"author": "Morgan Brunot <brunot.morgan@gmail.com> (http://github.com/oziks)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oziks/chuchote.git"
},
"bugs": {
"url": "https://github.com/oziks/chuchote/issues"
},
"homepage": "https://github.com/oziks/chuchote#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"husky": "^3.0.5",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.21.4",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"scripts": {
"lint": "prettier ./src/* --write",
"test": "jest --verbose",
"build": "rollup -c",
"watch": "rollup -cw",
"prepare": "rimraf dist; npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
}
}