forked from NeilFraser/JS-Interpreter
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 966 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
{
"name": "js-interpreter",
"version": "2.3.1",
"description": "NPM package for https://github.com/NeilFraser/JS-Interpreter",
"main": "lib/js-interpreter.min.js",
"module": "lib/js-interpreter.js",
"bin": "lib/cli.min.js",
"files": [
"lib"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"syntax": "eslint src",
"prepublish": "webpack && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aminmarashi/JS-Interpreter.git"
},
"author": "Amin Marashi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aminmarashi/JS-Interpreter/issues"
},
"homepage": "https://github.com/aminmarashi/JS-Interpreter#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"minimist": "^1.2.0"
}
}