-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
108 lines (108 loc) · 2.95 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "to-aop",
"version": "0.5.5",
"description": "AOP(aspect-oriented programming) library or creating hooks for debug and monkey patch function using ES6 Proxy|Class Prototype.",
"main": "dist/toAop",
"module": "dist/toAop",
"scripts": {
"preversion": "npm test && npm run lint && npm run build",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "npm run build && npm run changelog && git push && git push --tags && npm publish",
"lint": "eslint -c ./.eslintrc.js --fix './**/*.{js,jsx,mjs}' --ignore-path ./.prettierignore",
"test": "NODE_OPTIONS=--experimental-vm-modules ./node_modules/.bin/jest --no-watchman -c ./jest.config.mjs",
"build": "rollup -c rollup.config.mjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjancarik/to-aop.git"
},
"keywords": [
"hook",
"aop",
"aspect",
"advice",
"debug",
"monkey-patch",
"pointcut",
"join-point",
"aspect-oriented-programming",
"javascript",
"ES6",
"Proxy"
],
"author": "Miroslav Jancarik",
"license": "ISC",
"bugs": {
"url": "https://github.com/mjancarik/to-aop/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/mjancarik/to-aop#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^5.0.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jasmine": "^4.2.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.21.1"
},
"jest": {
"bail": false,
"verbose": true,
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"functions": 30,
"lines": 30,
"statements": 30
}
},
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/setupJest.js"
],
"modulePaths": [
"<rootDir>/"
],
"testRegex": "(/__tests__/.*(Spec))\\.jsx?$"
},
"dependencies": {},
"browserify": {
"transform": [
"babelify"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"precommit": "npm run lint",
"commitmsg": "node_modules/.bin/commitlint -e $HUSKY_GIT_PARAMS"
}
}
}