-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
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
50
51
52
53
54
55
56
57
{
"name": "vm.js",
"version": "0.0.6",
"description": "Javascript bytecode compiler/virtual machine implemented in pure coffeescript",
"repository": {
"type": "git",
"url": "git://github.com/tarruda/vm.js.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tarruda/vm.js/blob/master/LICENSE-MIT"
}
],
"main": "./build/nodejs/src/index",
"author": {
"name": "Thiago de Arruda",
"email": "tpadilha84@gmail.com"
},
"scripts": {
"test": "./node_modules/.bin/grunt test",
"pretest": "./node_modules/.bin/grunt rebuild"
},
"dependencies": {
"esprima": "git://github.com/tarruda/esprima.git#harmony"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-connect": "~0.3.0",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-livereload": "~0.1.2",
"grunt-coffee-build": "~1.4.8",
"grunt-coffeelint": "~0.0.7",
"grunt-mocha-debug": "~0.0.6",
"grunt-release": "~0.5.1",
"expect.js": "~0.2.0",
"benchmark": "~1.0.0",
"microtime": "~0.4.0",
"source-map-support": "~0.2.1",
"grunt-cli": "~0.1.11"
},
"keywords": [
"vm",
"harmony",
"sandbox",
"coroutine",
"generator",
"fiber",
"javascript-sandbox",
"virtual-machine"
],
"engines": {
"node": ">=0.8.0"
}
}