-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "sails-hook-babel",
"version": "7.0.0",
"description": "Sails JS hook to activate babel for the whole api folder",
"main": "index.js",
"scripts": {
"test": "node tests/runner",
"test-all": "node tests/runner all",
"autotest": "mocha --watch --reporter spec tests/**/*Test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/sane/sails-hook-babel.git"
},
"keywords": [
"sails",
"hook",
"babel",
"transpiler",
"ES6",
"ES2015",
"ES7",
"sails-hook"
],
"author": "Markus Padourek",
"license": "MIT",
"bugs": {
"url": "https://github.com/sane/sails-hook-babel/issues"
},
"homepage": "https://github.com/sane/sails-hook-babel",
"sails": {
"isHook": true
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"source-map-support": "^0.5.9"
},
"devDependencies": {
"glob": "^5.0.3",
"mocha": "^2.2.1",
"sails": "~0.11.0"
}
}