-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "coffee-to-es2015-codemod",
"version": "0.0.1",
"description": "A set of JSCodeshift transforms that will help you transform your CoffeeScript codebase to ES2015",
"scripts": {
"test": "f() { EXIT=0; npm run lint || EXIT=$?; npm run mocha $@ || EXIT=$?; exit $EXIT; }; f",
"lint": "eslint .",
"create-test": "f() { mkdir -p ./test/approvals/$1; touch ./test/approvals/$1/$2.coffee-output; touch ./test/approvals/$1/$2.expected; }; f",
"mocha": "NODE_ENV=test mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hacker0x01/coffee-to-es2015-codemod.git"
},
"keywords": [
"jscodeshift",
"coffeescript",
"transform",
"es2015",
"codemod",
"recast"
],
"author": "Remon Oldenbeuving",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hacker0x01/coffee-to-es2015-codemod/issues"
},
"homepage": "https://github.com/Hacker0x01/coffee-to-es2015-codemod#readme",
"dependencies": {
"babel-eslint": "^4.1.6",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"jscodeshift": "^0.3.10",
"mocha": "^2.3.4"
},
"devDependencies": {
"babel-core": "^5.8.21"
}
}