forked from lebab/lebab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "lebab",
"version": "2.7.7",
"description": "Turn your ES5 code into readable ES6/ES7",
"main": "index.js",
"scripts": {
"lint": "eslint src/ test/ system-test/ bin/ *.js",
"prepublish": "rm -rf lib/ && babel src/ --out-dir lib/",
"system-test": "npm run prepublish && mocha --compilers js:babel-register \"system-test/**/*Test.js\"",
"//": "Unit tests: a) for single run, b) in watch-mode, c) with coverage.",
"test": "mocha --compilers js:babel-register \"test/**/*Test.js\"",
"watch": "mocha --watch --compilers js: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=lcov && cat coverage/*/lcov.info | codecov"
},
"engines": {
"node": ">=4"
},
"files": [
"lib",
"bin",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/mohebifar/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/mohebifar/lebab/issues"
},
"homepage": "https://github.com/mohebifar/lebab",
"dependencies": {
"commander": "^2.11.0",
"escope": "^3.6.0",
"espree": "^3.4.3",
"estraverse": "^4.1.1",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"recast": "^0.12.6"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"codecov": "^2.2.0",
"eslint": "^4.3.0",
"eslint-plugin-no-null": "^1.0.2",
"mocha": "^3.4.2",
"nyc": "^11.1.0"
}
}