-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.33 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
43
44
45
46
47
48
49
{
"name": "evaljs",
"version": "2.0.1",
"description": "A JavaScript interpreter written in JavaScript",
"main": "index.js",
"bin": "./bin/evaljs",
"dependencies": {
"acorn": "^4.0.4",
"require-from-string": "^1.2.1"
},
"devDependencies": {
"browserify": "^13.1.1",
"esprima": "^3.1.2",
"jshint": "^2.9.4",
"regenerator": "^0.9.5",
"uglify-js": "^2.7.5"
},
"scripts": {
"test": "npm run compile && npm run jshint && node test.js",
"compile": "./node_modules/regenerator/bin/regenerator --include-runtime ./index.js > ./index-compiled.js",
"jshint": "./node_modules/.bin/jshint index.js test.js theTest.js",
"build": "mkdir -p dist && npm run build-js && npm run minify",
"build-js": "./node_modules/.bin/browserify -r acorn -r ./index-compiled.js:evaljs -o dist/eval.js",
"minify": "./node_modules/.bin/uglifyjs -mc -o dist/eval.min.js dist/eval.js"
},
"keywords": [
"eval",
"javascript",
"interpreter",
"closure",
"closures",
"js",
"evaluate",
"no-eval"
],
"repository": {
"type": "git",
"url": "https://github.com/marten-de-vries/evaljs.git"
},
"license": "ISC",
"author": "Marten de Vries",
"contributors": [
{
"name": "Jason Huggins",
"email": "[email protected]",
"url": "http://www.hugs.io/"
}
]
}