forked from lautis/rollup-plugin-coffee-script
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.7 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
58
59
60
61
{
"author": "Bernardo Kuri <github+rollup-plugin-coffeescript@bkuri.com>",
"browser": "dist/rollup-plugin-coffeescript.umd.min.js",
"description": "Modern CoffeeScript support for Rollup.",
"homepage": "https://github.com/bkuri/rollup-plugin-coffeescript",
"license": "MIT",
"main": "dist/rollup-plugin-coffeescript.min.cjs",
"module": "dist/rollup-plugin-coffeescript.min.mjs",
"name": "@bkuri/rollup-plugin-coffeescript",
"type": "module",
"version": "0.4.2",
"bugs": {
"url": "https://github.com/bkuri/rollup-plugin-coffeescript/issues"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.4",
"coffeescript": "^2.7.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"del-cli": "^5.1.0",
"mocha": "^10.2.0",
"rollup": "^3.29.2",
"rollup-plugin-polyfill-node": "^0.12.0"
},
"files": [
"dist"
],
"keywords": [
"coffeescript",
"rollup",
"rollup-plugin",
"vite",
"vite-plugin"
],
"peerDependencies": {
"coffeescript": "2.7.0",
"rollup": "^3.x"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/bkuri/rollup-plugin-coffeescript.git"
},
"scripts": {
"build": "rollup -c",
"clean": "del-cli dist",
"ci:coverage": "nyc yarn test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "yarn build && yarn lint",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "yarn test --verbose",
"prebuild": "yarn clean",
"prepare": "yarn build",
"pretest": "yarn build",
"test": "mocha"
}
}