-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
90 lines (90 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "alga-js",
"version": "0.1.0-beta-17",
"description": "Alga.js is a JavaScript helper to help build UI components by using any of modern web frameworks or libraries",
"module": "./lib/alga.es.js",
"main": "./lib/alga.js",
"exports": {
".": {
"import": "./lib/alga.es.js",
"require": "./lib/alga-cjs.js",
"types": "./types/alga.d.ts"
},
"./lib/*": "./lib/*.es.js",
"./lib/*.js": "./lib/*.js",
"./date": {
"import": "./lib/date/date.es.js",
"require": "./lib/date/date.cjs.js",
"types": "./types/date/date.d.ts"
},
"./number": {
"import": "./lib/number/number.es.js",
"require": "./lib/number/number.cjs.js",
"types": "./types/number/number.d.ts"
},
"./array": {
"import": "./lib/array/array.es.js",
"require": "./lib/array/array.cjs.js",
"types": "./types/array/array.d.ts"
},
"./object": {
"import": "./lib/object/object.es.js",
"require": "./lib/object/object.cjs.js",
"types": "./types/object/object.d.ts"
},
"./string": {
"import": "./lib/string/string.es.js",
"require": "./lib/string/string.cjs.js",
"types": "./types/string/string.d.ts"
},
"./time": {
"import": "./lib/time/time.es.js",
"require": "./lib/time/time.cjs.js",
"types": "./types/time/time.d.ts"
}
},
"unpkg": "./lib/alga.js",
"typings": "./types/alga.d.ts",
"files": [
"ts",
"lib/**/*.js",
"types/**/*.d.ts"
],
"scripts": {
"build": "rollup --config",
"test": "jest",
"lint": "eslint js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tedirghazali/alga-js.git"
},
"keywords": [
"alga-js",
"library",
"helpers",
"utilities"
],
"author": "Tedir Ghazali",
"license": "SEE LICENSE IN license.txt",
"bugs": {
"url": "https://github.com/tedirghazali/alga-js/issues"
},
"homepage": "https://github.com/tedirghazali/alga-js#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^11.1.4",
"@types/jest": "^27.4.0",
"eslint": "^7.20.0",
"jest": "^27.4.7",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.3",
"tslib": "^2.6.2",
"typescript": "^4.5.4"
}
}