Skip to content

Commit 4f95ec1

Browse files
committed
add a package.json
so that users can ``` npm install --save github:NeilFraser/JS-Interpreter ``` closes NeilFraser#156
1 parent d564a7d commit 4f95ec1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

package.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "js-interpreter",
3+
"private": true,
4+
"version": "0.0.1",
5+
"description": "A sandboxed JavaScript interpreter in JavaScript. Execute arbitrary JavaScript code line by line in isolation and safety.",
6+
"main": "interpreter.js",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+https://github.com/NeilFraser/JS-Interpreter.git"
10+
},
11+
"author": "Neil Fraser",
12+
"license": "Apache-2.0",
13+
"bugs": {
14+
"url": "https://github.com/NeilFraser/JS-Interpreter/issues"
15+
},
16+
"homepage": "https://github.com/NeilFraser/JS-Interpreter#readme"
17+
}

0 commit comments

Comments
 (0)