forked from FAXES/easycompile-npm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 786 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
{
"name": "easycompile",
"version": "1.0.1",
"description": "A minimalist bytecode compiler for Node.js - Modified for EasyCompile",
"main": "lib/index.js",
"bin": "lib/cli.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "mocha ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bytenode/bytenode.git"
},
"keywords": [
"bytenode",
"bytecode",
"v8-snapshots",
"compile",
"compiler"
],
"author": "Osama Abbas <pw.osama@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bytenode/bytenode/issues"
},
"homepage": "https://github.com/bytenode/bytenode#readme",
"devDependencies": {
"electron": "^12.0.9",
"mocha": "^8.4.0"
}
}