forked from mralex/babel-middleware
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 932 Bytes
/
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": "babel-middleware",
"version": "0.3.4",
"description": "Express/Connect middleware to pre-process requested JS files through Babel",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/mralex/babel-middleware"
},
"keywords": [
"babel",
"es6",
"connect",
"express",
"middleware"
],
"author": "Alex Roberts <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/mralex/babel-middleware/issues"
},
"homepage": "https://github.com/mralex/babel-middleware",
"dependencies": {
"babel-core": "^6.9.1",
"micromatch": "^2.3.10",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.3"
},
"devDependencies": {
"chai": "^3.4.1",
"express": "^4.13.3",
"mocha": "^2.3.4",
"sleep": "^3.0.0",
"supertest": "^1.1.0"
}
}