-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.43 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
68
69
70
71
{
"name": "@togglecorp/fujs",
"version": "2.1.1",
"description": "Friendly Utility for JS",
"files": [
"/build"
],
"type": "module",
"main": "build/cjs/index.cjs",
"module": "build/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./build/esm/index.d.ts",
"import": "./build/esm/index.js",
"require": "./build/cjs/index.cjs"
}
},
"typings": "build/esm/index.d.ts",
"scripts": {
"build": "rollup -c && tsc --project tsconfig-typings.json",
"watch": "rollup -c -w",
"prepack": "yarn build",
"typecheck": "tsc --project tsconfig-typings.json",
"check-unused": "unimported",
"test": "TZ=Asia/Katmandu jest",
"test:coverage": "TZ=Asia/Katmandu jest --coverage",
"lint": "eslint ./src --report-unused-disable-directives",
"generate-doc": "typedoc --theme markdown --out mydocs src/index.ts --exclude '**/*.test.ts' --excludePrivate --excludeProtected"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toggle-corp/fujs.git"
},
"author": "tnagorra",
"license": "ISC",
"bugs": {
"url": "https://github.com/toggle-corp/fujs/issues"
},
"homepage": "https://github.com/toggle-corp/fujs#readme",
"dependencies": {
"@babel/runtime-corejs3": "^7.22.6"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-eslint": "^9.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"babel-jest": "^29.6.1",
"babel-plugin-polyfill-corejs3": "^0.8.2",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.6.1",
"rollup": "^3.26.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-filesize": "^10.0.0",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.6",
"unimported": "^1.29.2"
}
}