-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 824 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
37
38
39
{
"name": "jsdom-eval",
"version": "0.2.4",
"bin": {
"jsdom-eval": "./cli.js"
},
"description": "eval js inside jsdom for simple testing that requires the dom",
"main": "index.js",
"scripts": {
"test": "node test"
},
"repository": {
"type": "git",
"url": "git://github.com/hayes/jsdom-eval.git"
},
"keywords": [
"dom",
"jsdom",
"test",
"eval"
],
"author": "Michael Hayes",
"license": "MIT",
"bugs": {
"url": "https://github.com/hayes/jsdom-eval/issues"
},
"homepage": "https://github.com/hayes/jsdom-eval",
"dependencies": {
"concat-stream": "^1.4.6",
"convert-source-map": "^0.3.5",
"jsdom": "^2.0.0",
"minimist": "^0.1.0",
"source-map": "^0.1.37"
},
"devDependencies": {
"browserify": "^8.0.3",
"tape": "^3.0.3"
}
}