forked from lebab/lebab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.97 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
{
"name": "lebab",
"version": "2.7.1",
"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 <mohamad@mohebifar.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohebifar/lebab/issues"
},
"homepage": "https://github.com/mohebifar/lebab",
"dependencies": {
"babel-polyfill": "^6.9.1",
"commander": "^2.9.0",
"escope": "^3.6.0",
"espree": "^3.2.0",
"estraverse": "^4.1.1",
"glob": "^7.0.5",
"lodash": "^4.5.1",
"recast": "^0.11.20"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.6",
"chai": "^3.4.1",
"codecov": "^1.0.1",
"eslint": "^3.3.0",
"eslint-plugin-no-null": "^1.0.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2"
}
}