-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1 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
{
"name": "isomorphic-vm",
"version": "0.0.1",
"description": "Isomorphic unsafe node.js vm for node and browser",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"typings.json"
],
"scripts": {
"build": "tsc -d typings/main.d.ts src/index.ts --outDir . --module commonjs --removeComments",
"prepublish": "typings install && npm run build",
"ci-test": "npm run test",
"pretest": "tsc",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alitaheri/isomorphic-vm.git"
},
"keywords": [
"vm",
"isomorphic",
"node",
"node.js",
"browser",
"sandbox"
],
"author": "Ali Taheri Moghaddar",
"license": "MIT",
"bugs": {
"url": "https://github.com/alitaheri/isomorphic-vm/issues"
},
"homepage": "https://github.com/alitaheri/isomorphic-vm#readme",
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "^8.0.4",
"mocha": "^2.4.5",
"typescript": "^1.7.5",
"typings": "^0.6.8"
}
}