-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
37 lines (37 loc) · 890 Bytes
/
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
{
"name": "faster.js",
"version": "1.1.1",
"description": "A Babel plugin that compiles idiomatic Javascript to faster, micro-optimized code.",
"main": "lib/index.js",
"scripts": {
"bench": "npm run build && node ./bench/index.js",
"bench-fast": "npm run build && node ./bench/index.js -t 1",
"build": "babel src -d lib",
"test": "mocha --require babel-core/register",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"benchmark": "^2.1.4",
"command-line-args": "^5.0.2",
"mocha": "^6.2.0"
},
"peerDependencies": {
"babel-core": "^6.26.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vzhou842/faster.js.git"
},
"keywords": [
"faster",
"compile",
"optimize",
"array"
],
"author": "Victor Zhou",
"license": "MIT"
}