-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.35 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
{
"name": "@reaxi/events",
"version": "0.2.0",
"main": "dist/index.js",
"source": "./src/index.ts",
"types": "dist/index.d.ts",
"repository": "https://github.com/reaxi/events",
"author": {
"name": "Andrew Colman"
},
"keywords": [
"node",
"events",
"event system",
"typescript"
],
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup --config rollup.config.js",
"build:quick": "sucrase ./src -d ./dist --transforms typescript,imports",
"minify": "terser dist/index.js --compress ecma=2015,computed_props=false -o dist/index.js --comments false",
"dev": "nodemon ./src/index.ts ",
"predev:compiled": "yarn build:quick",
"dev:compiled": "node dist/index.js",
"test": "jest -i",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch",
"prepare": "husky install",
"lint": "eslint --cache --fix",
"format": "prettier --write"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@swc/core": "^1.3.1",
"@swc/jest": "^0.2.22",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"rollup-plugin-command": "^1.1.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"sucrase": "^3.27.0",
"terser": "^5.15.0",
"ts-jest": "^29.0.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"dependencies": {
"eslint-plugin-n": "^15.3.0",
"jsonc-require": "^1.0.1",
"nanov": "^1.0.2"
},
"lint-staged": {
"*.{js,ts}": "npm run lint",
"*.{js,ts,css,md}": "npm run format"
}
}