forked from lebab/lebab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.95 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "lebab",
"version": "3.1.1",
"description": "Turn your ES5 code into readable ES6/ES7",
"main": "index.js",
"scripts": {
"lint": "eslint src/ test/ system-test/ bin/ *.js",
"build": "rm -rf lib/ && babel src/ --out-dir lib/",
"prepublishOnly": "npm run build",
"system-test": "npm run build && mocha --require @babel/register \"./system-test/**/*Test.js\"",
"//": "Unit tests: a) for single run, b) in watch-mode, c) with coverage.",
"test": "mocha --require @babel/register \"./test/**/*Test.js\"",
"watch": "mocha --watch --require @babel/register \"./test/**/*Test.js\"",
"coverage": "nyc npm test",
"///": "These are used by Travis to create coverage report. Run 'coverage' script first.",
"ensure-coverage": "nyc check-coverage --statements 80 --branches 80 --functions 80",
"upload-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"engines": {
"node": ">=6"
},
"files": [
"lib",
"bin",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/lebab/lebab"
},
"bin": {
"lebab": "bin/index.js"
},
"keywords": [
"es5",
"es6",
"es2015",
"es7",
"es2016",
"transpiler",
"transpile"
],
"author": "Mohamad Mohebifar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lebab/lebab/issues"
},
"homepage": "https://github.com/lebab/lebab",
"dependencies": {
"commander": "^5.1.0",
"escope": "^3.6.0",
"espree": "^6.2.1",
"estraverse": "^4.2.0",
"f-matches": "^1.1.0",
"glob": "^7.1.4",
"lodash": "^4.17.11",
"recast": "^0.19.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-plugin-no-null": "^1.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
}
}