This repository was archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
{
"name": "rollup-plugin-typescript",
"version": "1.0.1",
"description": "Seamless integration between Rollup and TypeScript.",
"main": "dist/rollup-plugin-typescript.cjs.js",
"module": "dist/rollup-plugin-typescript.es.js",
"jsnext:main": "dist/rollup-plugin-typescript.es.js",
"files": [
"dist",
"src",
"index.d.ts"
],
"keywords": [
"rollup-plugin",
"typescript",
"es2015"
],
"license": "MIT",
"homepage": "https://github.com/rollup/rollup-plugin-typescript",
"author": "Oskar Segersvärd",
"scripts": {
"prebuild": "rimraf dist/*",
"build": "rollup -c",
"lint": "eslint src test/*.js",
"pretest": "npm run build",
"test": "mocha && tsc",
"posttest": "npm run lint",
"prepublishOnly": "npm run test",
"prepare": "npm run build"
},
"dependencies": {
"resolve": "^1.10.0",
"rollup-pluginutils": "^2.5.0"
},
"peerDependencies": {
"tslib": "*",
"typescript": ">=2.1.0"
},
"devDependencies": {
"buble": "^0.19.7",
"eslint": "^5.15.3",
"mocha": "^6.1.4",
"rimraf": "^2.6.3",
"rollup": "^1.7.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.1",
"tslib": "^1.9.3",
"typescript": "^3.3.4000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rollup/rollup-plugin-typescript.git"
},
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-typescript/issues"
}
}