-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 965 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
38
39
40
41
{
"name": "mocha-vm",
"version": "1.2.2",
"description": "A package designed to test user-submitted JavaScript code with user-submitted tests (using Mocha and Chai). All user-submitted code is run in a vm2 sandbox environment.",
"keywords": [
"testing",
"sandbox",
"mocha",
"chai",
"assert",
"vm2",
"safe",
"user-submitted",
"string"
],
"homepage": "https://github.com/BretCameron/mocha-vm",
"bugs": {
"url": "https://github.com/BretCameron/mocha-vm/issues",
"email": "bretcameron@gmail.com"
},
"main": "index.js",
"scripts": {
"test": "mocha"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/BretCameron/mocha-vm.git"
},
"author": "Bret Cameron <bretcameron@gmail.com>",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.3",
"vm2": "^3.9.2"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true
}