-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "rollup-plugin-coffee-script",
"version": "2.0.0",
"description": "Integration between Rollup and CoffeeScript.",
"keywords": [
"rollup-plugin",
"coffeescript"
],
"license": "MIT",
"homepage": "https://github.com/lautis/rollup-plugin-coffee-script",
"author": "Ville Lautanala",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"coffeescript": "^2.0.3",
"mocha": "^4.0.1",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6"
},
"scripts": {
"test": "mocha --require babel-register"
},
"dependencies": {
"object-assign": "^4.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-pluginutils": "^2.0.1"
},
"peerDependencies": {
"coffeescript": "2.x"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lautis/rollup-plugin-coffee-script.git"
},
"bugs": {
"url": "https://github.com/lautis/rollup-plugin-coffee-script/issues"
}
}