-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 980 Bytes
/
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
{
"name": "jolty",
"version": "0.6.2",
"main": "dist/jolty.cjs.js",
"module": "dist/jolty.esm.js",
"umd:main": "dist/jolty.min.js",
"umd:name": "jolty",
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/jolty.esm.js",
"require": "./dist/jolty.cjs.js"
},
"./*": "./dist/*"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joltylabs/jolty.git"
},
"author": "Anatolii Moldovanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/joltylabs/jolty/issues"
},
"homepage": "https://github.com/joltylabs/jolty#readme",
"keywords": [],
"description": "",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.44.0",
"prettier": "3.0.0",
"rollup": "^2.79.1"
}
}