-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "es2coffee",
"version": "0.0.0-development",
"description": "Convert ES6+ code to Coffeescript",
"bin": {
"es2coffee": "./bin/es2coffee.js"
},
"main": "lib/index.js",
"repository": "https://github.com/helixbass/es2coffee",
"author": "Julian Rosse <@helixbass>",
"license": "MIT",
"keywords": [
"coffeescript"
],
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/parser": "^7.7.7",
"lodash": "^4.17.10",
"minimist": "^1.2.0",
"pluralize": "^8.0.0",
"prettier": "github:helixbass/prettier#b93cdfcf",
"prettier-plugin-coffeescript": "^0.1.4"
},
"scripts": {
"build": "coffee -o lib/ -c src/",
"watch": "coffee -o lib/ -wc src/",
"prepublish": "npm run build",
"lint": "eslint 'src/**/*.coffee'",
"test": "jest"
},
"files": [
"lib"
],
"devDependencies": {
"coffeescript": "^2.5.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-coffee": "^0.1.12",
"eslint-plugin-prettier": "^2.6.2",
"jest": "^23.3.0"
}
}