Skip to content

Commit

Permalink
add a package.json
Browse files Browse the repository at this point in the history
so that users can

```
npm install --save github:NeilFraser/JS-Interpreter
```

closes NeilFraser#156
  • Loading branch information
tjenkinson committed Aug 31, 2019
1 parent d564a7d commit 4f95ec1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "js-interpreter",
"private": true,
"version": "0.0.1",
"description": "A sandboxed JavaScript interpreter in JavaScript. Execute arbitrary JavaScript code line by line in isolation and safety.",
"main": "interpreter.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NeilFraser/JS-Interpreter.git"
},
"author": "Neil Fraser",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NeilFraser/JS-Interpreter/issues"
},
"homepage": "https://github.com/NeilFraser/JS-Interpreter#readme"
}

0 comments on commit 4f95ec1

Please sign in to comment.