1 | {
|
2 | "name": "grunt-babel",
|
3 | "version": "8.0.0",
|
4 | "description": "Use next generation JavaScript, today",
|
5 | "license": "MIT",
|
6 | "repository": "babel/grunt-babel",
|
7 | "author": {
|
8 | "name": "Sindre Sorhus",
|
9 | "email": "sindresorhus@gmail.com",
|
10 | "url": "sindresorhus.com"
|
11 | },
|
12 | "engines": {
|
13 | "node": ">=6.9"
|
14 | },
|
15 | "scripts": {
|
16 | "lint": "eslint .",
|
17 | "format": "eslint . --fix",
|
18 | "test": "yarn lint && grunt"
|
19 | },
|
20 | "files": [
|
21 | "tasks"
|
22 | ],
|
23 | "keywords": [
|
24 | "gruntplugin",
|
25 | "babel",
|
26 | "transpiler",
|
27 | "es2015",
|
28 | "rewriting",
|
29 | "transformation",
|
30 | "syntax",
|
31 | "codegen",
|
32 | "desugaring",
|
33 | "javascript",
|
34 | "compiler"
|
35 | ],
|
36 | "peerDependencies": {
|
37 | "@babel/core": "^7.0.0",
|
38 | "grunt": ">=0.4.0"
|
39 | },
|
40 | "devDependencies": {
|
41 | "@babel/core": "^7.0.0",
|
42 | "@babel/preset-env": "^7.0.0",
|
43 | "babel-eslint": "^8.0.0",
|
44 | "eslint": "^4.19.0",
|
45 | "eslint-config-babel": "^7.0.2",
|
46 | "eslint-plugin-flowtype": "^2.46.1",
|
47 | "eslint-plugin-prettier": "^2.6.0",
|
48 | "grunt": "^1.0.1",
|
49 | "grunt-cli": "^1.2.0",
|
50 | "grunt-contrib-clean": "^1.0.0",
|
51 | "grunt-contrib-nodeunit": "^1.0.0",
|
52 | "prettier": "^1.11.1"
|
53 | }
|
54 | }
|