forked from academia-de-codigo/step-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.41 KB
/
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
42
{
"name": "step-interpreter",
"version": "3.0.0",
"description": "Executes code in a (unsafe) sandboxed environment, instruction by instruction, with configurable speed.",
"main": "./index.js",
"repository": "https://github.com/pantoninho/step-interpreter",
"scripts": {
"test": "mocha",
"coverage:lcov": "nyc --reporter=lcov npm run test",
"coverage": "nyc npm run test",
"lint": "eslint --fix **/*.js"
},
"author": "Pedro Antoninho",
"license": "ISC",
"dependencies": {
"@babel/generator": "^7.9.5",
"@babel/helper-module-imports": "^7.8.3",
"@babel/helper-plugin-utils": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/standalone": "^7.9.5",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"context-eval": "^0.1.0",
"eventemitter3": "^4.0.0",
"fast-async": "7",
"regenerator-runtime": "^0.13.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.3",
"mocha": "7.1.1",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"sinon-chai-in-order": "^0.1.0"
}
}