-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.88 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
{
"name": "iplug",
"version": "1.0.0-rc1",
"description": "The lightest JavaScript plugin system for the Map/Reduce World",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": {
"default": "./dist/index.mjs"
}
}
},
"files": [
"dist/"
],
"type": "module",
"scripts": {
"build": "rimraf dist && rollup --bundleConfigAsCjs --config rollup.config.ts --configPlugin typescript",
"dev": "rimraf dist && rollup -w --bundleConfigAsCjs --config rollup.config.ts --configPlugin typescript",
"test": "jest",
"debug-examples": "node --loader ts-node/esm --inspect-brk examples/es6/index.js",
"preversion": "npm test",
"version": "npm run build && git add -fA dist",
"postversion": "git push && git push --tags"
},
"testMatch": [
"**/src/**/*.spec.(ts|js)"
],
"repository": {
"type": "git",
"url": "https://github.com/cubelets/iplug.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"javascript",
"plugin manager",
"plugin system",
"plugin",
"plugins",
"message bus",
"messagebus"
],
"author": "Cubelets",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"esbuild": "^0.25.8",
"esbuild-jest": "^0.5.0",
"http-server": "^14.1.1",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^30.0.4",
"rimraf": "^6.0.1",
"rollup": "^4.9.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}