-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"author": "Anton Trofimenko",
"bugs": {
"url": "https://github.com/corefunc/decorators/issues"
},
"contributors": [
{
"email": "r37r0m0d3l@protonmail.com",
"name": "Anton Trofimenko"
}
],
"description": "Decorators for modern JavaScript",
"devDependencies": {
"@r37r0m0d3l/rollup-config-pkg": "git+https://github.com/r37r0m0d3l/rollup-config-pkg.git",
"babel-eslint": "10.1.0",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.3",
"npm-check": "6.0.1",
"prettier": "2.7.1"
},
"engines": {
"node": ">=12.9.0"
},
"engineStrict": true,
"exports": {
".": {
"browser": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"node": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist/index.cjs",
"dist/index.cjs.map",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"dist/index.mjs",
"dist/index.mjs.map"
],
"homepage": "https://github.com/corefunc/decorators",
"keywords": [
"aop",
"aspects",
"decorator",
"decorators",
"mixin"
],
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"name": "@corefunc/decorators",
"repository": {
"type": "git",
"url": "git+https://github.com/corefunc/decorators.git"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"build:watch": "rollup --config rollup.config.mjs --watch",
"lint": "eslint ./src/**/*.mjs",
"lint:md": "remark .",
"package:upgrade": "npm-check --update",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "0.0.5"
}