-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.83 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.83 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
63
64
65
{
"name": "mpwrapper",
"version": "0.2.0",
"description": "Monkey Patch Wrapper that support multiple wrapping and unwrapping",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "obecny/mpwrapper",
"scripts": {
"clean": "rimraf build/*",
"codecov:browser": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
"compile": "tsc -p .",
"lint": "gts check",
"lint:fix": "gts fix",
"precompile": "tsc --version",
"prepare": "npm run compile",
"start": "webpack serve --progress --color --port 8091 --config webpack.config.js --hot --host 0.0.0.0 --compress",
"start:node": "node example/node.js",
"start:shimmer": "node example/shimmer.js",
"tdd": "yarn test -- --watch-extensions ts --watch",
"test": "nyc ts-mocha -p tsconfig.json test/**/*.ts",
"watch": "tsc -w"
},
"keywords": [
"monkey patch",
"wrapper",
"shimmer"
],
"author": "Bartlomiej Obecny",
"license": "Apache-2.0",
"engines": {
"node": ">=10.0.0"
},
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"doc",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-loader": "^8.2.4",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"gts": "^3.1.0",
"shimmer": "^1.2.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
}
}