-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "rollup-lib-config",
"description": "Personal Rollup configuration for module building.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"version": "2.0.1",
"packageManager": "[email protected]",
"files": [
"dist"
],
"license": "MIT",
"private": true,
"scripts": {
"build": "rimraf ./dist && rollup -c --environment BUILD:production",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm run test"
},
"homepage": "https://github.com/dvlden/rollup-lib-config#readme",
"bugs": "https://github.com/dvlden/rollup-lib-config/issues",
"repository": "github:dvlden/rollup-lib-config",
"author": {
"name": "Nenad Novaković",
"email": "[email protected]",
"url": "https://dvl.sh/"
},
"keywords": [
"rollup",
"config",
"build",
"bundle",
"module",
"library"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^29.1.1",
"jest": "^29.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}