-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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-typescript-starter",
"version": "0.0.1",
"description": "rollup typescript starter template",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"test": "jest",
"lint": "eslint \"**/*.ts\"",
"start": "npm run build:dev -- --watch",
"build": "NODE_ENV=production npm run build:dev",
"build:dev": "rollup --config rollup.config.js",
"pretest": "npm run build",
"prepublish": "npm run build"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/hungtcs-lab/rollup-typescript-starter.git"
},
"author": "鸿则 <[email protected]> (https://github.com/hungtcs)",
"license": "ISC",
"bugs": {
"url": "https://github.com/hungtcs-lab/rollup-typescript-starter/issues"
},
"homepage": "https://github.com/hungtcs-lab/rollup-typescript-starter#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"postcss": "^8.2.8",
"rollup": "^2.41.4",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.32.8",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
}
}