-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "hot-patcher",
"version": "2.0.1",
"description": "Hot method patching framework for handling environmental method differences",
"exports": "./dist/index.js",
"react-native": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"format": "prettier --write '{source,test}/**/*.js'",
"prepublishOnly": "npm run build",
"test": "run-s test:specs test:format",
"test:format": "prettier --check '{source,test}/**/*.js'",
"test:specs": "npm run build && c8 --check-coverage --100 mocha 'test/**/*.spec.js'"
},
"files": [
"dist/*"
],
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/hot-patcher.git"
},
"keywords": [
"patch",
"override",
"hot",
"patch"
],
"author": "Perry Mitchell <perry@perrymitchell.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/hot-patcher/issues"
},
"homepage": "https://github.com/perry-mitchell/hot-patcher#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"c8": "^7.12.0",
"chai": "^4.3.7",
"husky": "^4.3.8",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sinon": "^14.0.2",
"typescript": "^4.9.3"
}
}