forked from lasso-js/lasso-babel-transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "lasso-babel-transform",
"version": "3.1.0",
"description": "Lasso.js transform that uses Babel to transpile ES6 code to ES5.",
"main": "src/index.js",
"scripts": {
"test": "npm run mocha && npm run lint",
"lint": "jshint src/",
"mocha": "mocha --timeout 5000 --reporter spec",
"cover": "rm -rf ./coverage && istanbul cover _mocha -- --timeout 5000 -R spec ./test/*.js",
"coverreport": "open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/lasso-js/lasso-babel-transform.git"
},
"author": "lassojs",
"license": "ISC",
"peerDependencies": {
"@babel/core": "^7",
"lasso": ">=2"
},
"dependencies": {
"lasso-caching-fs": "^1.0.1",
"lasso-package-root": "^1.0.0",
"raptor-logging": "^1.0.0",
"strip-json-comments": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"chai": "^3.5.0",
"jshint": "^2.9.2",
"lasso": "^3.2.9",
"mocha": "^5.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"lasso",
"babel",
"ES6",
"ES5",
"transpile"
],
"bugs": {
"url": "https://github.com/lasso-js/lasso-babel-transform/issues"
}
}