-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"name": "rollup-typescript-starter-lib",
"version": "1.0.0",
"description": "Bare-bones example of how to create a library using Rollup and TypeScript.",
"main": "dist/how-long-till-lunch.min.js",
"module": "dist/how-long-till-lunch.esm.js",
"browser": "dist/how-long-till-lunch.umd.js",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.spec.js",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zollero/rollup-typescript-starter-lib.git"
},
"keywords": [],
"author": "zollero <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/zollero/rollup-typescript-starter-lib/issues"
},
"homepage": "https://github.com/zollero/rollup-typescript-starter-lib#readme",
"devDependencies": {
"@types/ms": "^0.7.30",
"rollup": "^2.6.1",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-license": "^2.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^3.2.2"
},
"dependencies": {
"ms": "^2.1.1"
}
}