swc/ffi/package.json
강동윤 4ff6d4ed4a
Performance & Node binding (#84)
swc_common:
 - update rustc-ap crates to v313

swc_ecma_ast:
 - use bool instead of Option<Span>


swc_ecma_parser:
 - remove LexerInput
 - use uncons_while
 - assert only on debug mode
 - use Visit instead of Fold while verifying
 - replace debug! with trace!
 - disable logging while benchmarking
 - drop slog

swc_ecma_transforms:
 - classes: fold Decl instead of Stmt

swc:
 - add nodejs binding
2018-12-21 16:54:36 +09:00

29 lines
641 B
JSON

{
"name": "ffi",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"author": "강동윤 <kdy1@outlook.kr>",
"license": "MIT",
"dependencies": {
"neon-cli": "^0.2.0"
},
"scripts": {
"install": "neon build --release"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"acorn": "^6.0.4",
"babylon": "^6.18.0",
"bench-runner": "^1.3.4",
"esformatter-parser": "^1.0.0",
"espree": "^5.0.0",
"esprima": "^4.0.1",
"flow-parser": "^0.89.0",
"recast": "^0.16.1",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^21.0.2"
}
}