-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "@funnyecho/hamon",
"version": "2.0.0",
"description": "Event-driven architecture with varying types of hook",
"jest": {
"testRegex": "/config/jest/dont-run-jest-directly\\.js$"
},
"main": "./dist/index.js",
"types": "./dist/hamon.d.ts",
"files": [
"dist"
],
"prettier": "./config/.prettierrc.yml",
"scripts": {
"test": "cross-env NODE_ENV=development jest --config ./config/jest/config.source.js",
"test:coverage": "cross-env NODE_ENV=development jest --config ./config/jest/config.source.js --coverage",
"build": "tsc"
},
"author": "SamHwang1990 @funnyecho",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.17",
"cross-env": "^6.0.3",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/funnyecho/hamon.git"
},
"bugs": {
"url": "https://github.com/funnyecho/hamon/issues"
},
"homepage": "https://github.com/funnyecho/hamon#readme",
"directories": {
"doc": "docs"
}
}