forked from rollup/rollup-plugin-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "rollup-plugin-typescript",
"version": "0.8.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"
],
"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 --compilers js:buble/register",
"posttest": "npm run lint",
"prepublish": "npm run test"
},
"dependencies": {
"compare-versions": "2.0.1",
"object-assign": "^4.0.1",
"rollup-pluginutils": "^1.3.1",
"tippex": "^2.1.1",
"typescript": "^1.8.9"
},
"devDependencies": {
"buble": "^0.13.1",
"eslint": "^2.13.1",
"mocha": "^3.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.34.3",
"rollup-plugin-buble": "^0.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rollup/rollup-plugin-typescript.git"
},
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-typescript/issues"
}
}