-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "libjs-loader",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npm run build:declaration && npm run build:rollup && npm run build:esm2015 && npm run build:esm2020 && npm run build:esm2022",
"build:declaration": "tsc --project tsconfig.json --declaration true --declarationDir . --emitDeclarationOnly",
"build:main": "tsc --project tsconfig.json --outDir bundles",
"build:cjs": "tsc --project tsconfig.json --module commonjs --outDir cjs",
"build:amd": "tsc --project tsconfig.json --module amd --outDir amd",
"build:umd": "tsc --project tsconfig.json --module umd --outDir umd",
"build:esm2015": "tsc --project tsconfig.json --target es2015 --module es2015 --outDir esm2015",
"build:esm2020": "tsc --project tsconfig.json --target es2020 --module es2020 --outDir esm2020",
"build:esm2022": "tsc --project tsconfig.json --target es2022 --module es2022 --outDir esm2022",
"build:rollup": "rollup --config rollup.config.ts",
"lint": "eslint --ext .ts ./src/**/* --fix"
},
"author": {
"name": "Giao Ho",
"email": "[email protected]",
"url": "https://github.com/joutvhu"
},
"homepage": "https://github.com/joutvhu/libjs-loader",
"repository": {
"type": "git",
"url": "https://github.com/joutvhu/libjs-loader.git"
},
"bugs": {
"url": "https://github.com/joutvhu/libjs-loader/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"types": "index.d.ts",
"main": "bundles/index.js",
"module": "fesm2015/index.js",
"esm2015": "esm2015/index.js",
"fesm2015": "fesm2015/index.js",
"esm2020": "esm2020/index.js",
"fesm2020": "fesm2020/index.js",
"esm2022": "esm2022/index.js",
"fesm2022": "fesm2022/index.js",
"keywords": [
"library",
"lazy",
"loader",
"browser"
],
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^16.11.56",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}