-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 964 Bytes
/
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
{
"name": "rollup-plugin-coffee-react",
"version": "1.0.0",
"description": "Rollup plugin to transpile .coffee and .cjsx files",
"main": "dist/rollup-plugin-coffee-react.cjs.js",
"jsnext:main": "dist/rollup-plugin-coffee-react.es6.js",
"scripts": {
"prepublish": "npm run build",
"build": "rollup -c",
"prebuild": "rm -rf dist/*"
},
"keywords": [
"rollup-plugin",
"cjsx",
"coffeescript"
],
"author": "Ievgen Martynov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/N1kto/rollup-plugin-coffee-react.git"
},
"bugs": {
"url": "https://github.com/N1kto/rollup-plugin-coffee-react/issues"
},
"dependencies": {
"coffee-react-transform": "^4.0.0",
"rollup-pluginutils": "^1.5.1"
},
"peerDependencies": {
"coffee-script": "^1.10.0"
},
"devDependencies": {
"rollup": "^0.33.0",
"rollup-plugin-buble": "^0.12.1"
}
}