-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"author": {
"name": "Yehor Sergeenko",
"email": "[email protected]",
"url": "https://github.com/bricss"
},
"bugs": {
"url": "https://github.com/bricss/thaw/issues"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@stylistic/eslint-plugin-js": "^2.7.2",
"c8": "^10.1.2",
"eslint": "^9.10.0",
"eslint-config-ultra-refined": "^3.2.5",
"mocha": "^10.7.3"
},
"description": "The narrow belt for AOP 🎀",
"engines": {
"node": ">=18.x"
},
"exports": {
"import": "./src/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/bricss/thaw#readme",
"keywords": [
"aop",
"aspect",
"aspect-oriented"
],
"license": "MIT",
"name": "thaw",
"repository": {
"type": "git",
"url": "git+https://github.com/bricss/thaw.git"
},
"scripts": {
"build": "rm -rf dist && npx babel src -d dist",
"lint": "eslint",
"prepack": "npm run build",
"pretest": "rm -rf coverage",
"test": "mocha --exit --recursive",
"test:cover": "c8 --include=src --reporter=lcov --reporter=text npm test"
},
"version": "4.0.6"
}