forked from krzkaczor/babel-plugin-tailcall-optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 KB
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": "babel-plugin-tailcall-optimization",
"version": "1.0.13",
"description": "Tail call optimization for JavaScript!",
"main": "build/lib.js",
"scripts": {
"compile": "rm -rf build && babel -d build/ src/",
"compile:dev": "babel -s -d build/ src/",
"prestart": "npm run compile",
"start": "node build/lib.js",
"pretest": "npm run compile:dev",
"prepublishOnly": "npm run compile",
"lint": "standard --fix",
"test": "npm run lint && mocha --compilers js:babel-register",
"prebenchmark": "npm run compile:dev",
"benchmark": "node benchmark/fibonacciSeq.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krzkaczor/babel-plugin-tailcall-optimization.git"
},
"author": "Krzysztof Kaczor",
"license": "MIT",
"bugs": {
"url": "https://github.com/krzkaczor/babel-plugin-tailcall-optimization/issues"
},
"homepage": "https://github.com/krzkaczor/babel-plugin-tailcall-optimization",
"devDependencies": {
"babel-cli": "^6.11.0",
"babel-preset-es2015": "^6.13.0",
"babel-register": "6.11.6",
"benchmark": "2.1.1",
"chai": "3.5.0",
"mocha": "2.5.3",
"standard": "7.1.2"
},
"peerDependencies": {
"babel-core": "^6.0.0",
"babel-traverse": "^6.13.0"
},
"standard": {
"env": [
"mocha"
]
}
}