-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "@necrobits/aggregator",
"version": "0.2.9",
"description": "Typescript/Javascript aggregator component",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc --project tsconfig.build.json",
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir lib/cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/necrobits/aggregator.js.git"
},
"keywords": [
"aggregator"
],
"author": "Phuc Tran",
"license": "MIT",
"bugs": {
"url": "https://github.com/necrobits/aggregator.js/issues"
},
"homepage": "https://github.com/necrobits/aggregator.js#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/lodash-es": "^4.17.9",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}