-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "rollup-library",
"version": "0.0.0",
"description": "Library template for rollup and typescript, powered by github actions",
"author": "Julien Dargelos <[email protected]>",
"license": "MIT",
"repository": "juliendargelos/rollup-library",
"homepage": "https://github.com/juliendargelos/rollup-library#readme",
"bugs": "https://github.com/juliendargelos/rollup-library/issues",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"test": "jest --passWithNoTests"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"jest": "^25.5.4",
"rollup": "^1.32.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^5.3.1",
"rollup-plugin-ts": "^1.4.0",
"ts-jest": "^25.5.1",
"typescript": "3.9.7"
}
}