forked from docpad/docpad-plugin-babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "docpad-plugin-babel",
"version": "2.1.0",
"description": "DocPad plugin to compile es-next to es5 using babel",
"homepage": "https://github.com/williammalo/docpad-plugin-babel",
"license": "MIT",
"keywords": [
"docpad",
"docpad-plugin",
"babel",
"es6",
"javascript",
"js",
"es next",
"transpiler"
],
"author": "William Malo <[email protected]> (http://github.com/williammalo)",
"maintainers": [
"William Malo <[email protected]> (http://github.com/williammalo)"
],
"contributors": [
"Jimmy King <[email protected]> (http://jimmyking.me)",
"Michael Duane Mooring <[email protected]> (http://mikeum.us)",
"Sebastian Domagala <[email protected]> (https://github.com/sdomagala)"
],
"bugs": {
"url": "https://github.com/williammalo/docpad-plugin-babel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/williammalo/docpad-plugin-babel.git"
},
"engines": {
"node": ">=0.8"
},
"peerDependencies": {
"docpad": "6"
},
"dependencies": {
"babel-core": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0"
},
"devDependencies": {
"coffee-script": "^1.9.1",
"docpad": "6",
"projectz": "^0.5.0"
},
"main": "./out/babel.plugin.js",
"scripts": {
"test": "node ./out/babel.test.js"
},
"cakeConfiguration": {
"COFFEE_SRC_PATH": "src"
}
}