forked from jsdom/jsdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "jsdom",
"version": "8.3.0",
"description": "A JavaScript implementation of the DOM and HTML standards",
"keywords": [
"dom",
"html",
"whatwg",
"w3c"
],
"maintainers": [
"Elijah Insua <tmpvar@gmail.com> (http://tmpvar.com)",
"Domenic Denicola <d@domenic.me> (https://domenic.me/)",
"Sebastian Mayr <sebmaster16@gmail.com> (http://blog.smayr.name/)",
"Joris van der Wel <joris@jorisvanderwel.com>"
],
"license": "MIT",
"repository": "tmpvar/jsdom",
"dependencies": {
"abab": "^1.0.0",
"acorn": "^2.4.0",
"acorn-globals": "^1.0.4",
"array-equal": "^1.0.0",
"cssom": ">= 0.3.0 < 0.4.0",
"cssstyle": ">= 0.2.34 < 0.3.0",
"escodegen": "^1.6.1",
"nwmatcher": ">= 1.3.7 < 2.0.0",
"parse5": "^1.5.1",
"request": "^2.55.0",
"sax": "^1.1.4",
"symbol-tree": ">= 3.1.0 < 4.0.0",
"tough-cookie": "^2.2.0",
"webidl-conversions": "^3.0.1",
"whatwg-url": "^1.0.0",
"xml-name-validator": ">= 2.0.1 < 3.0.0"
},
"devDependencies": {
"benchmark": "1.0.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"colors": "^1.0.3",
"eslint": "^1.5.1",
"eslint-plugin-html": "^1.0.4",
"fs-readdir-recursive": "^1.0.0",
"http-server": "^0.8.0",
"jscs": "^2.5.0",
"karma": "^0.13.19",
"karma-browserify": "^5.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.1",
"karma-mocha-webworker": "^1.1.1",
"karma-sauce-launcher": "^0.3.0",
"mocha": "^2.4.5",
"mocha-sugar-free": ">=1.3.0 < 2.0.0",
"nodeunit": "0.9.1",
"optimist": "0.6.1",
"portfinder": "0.4.0",
"q": "^1.2.0",
"selenium-standalone": "^4.6.1",
"st": "^0.5.5",
"watchify": "^3.7.0",
"wd": "0.3.12",
"webidl2js": "^4.2.0"
},
"browser": {
"canvas": false,
"vm": "./lib/jsdom/vm-shim.js"
},
"scripts": {
"prepublish": "npm run convert-idl",
"pretest": "npm run convert-idl && git submodule update --init --recursive",
"test-wpt": "mocha test/web-platform-tests/index.js",
"test-tuwpt": "mocha test/web-platform-tests/to-upstream.js",
"test-mocha": "mocha",
"test-mocha-all": "mocha test/index.js",
"test-old": "node ./test/runner",
"test": "npm run test-mocha-all && npm run test-old",
"test-karma": "karma start test/karma.conf.js",
"test-karma-worker": "karma start test/karma-webworker.conf.js",
"test-browser-old": "node ./test/browser-runner",
"test-browser": "npm run test-karma && npm run test-karma-worker && npm run test-browser-old",
"lint": "jscs lib/ && jscs test/ && eslint . && eslint test/web-platform-tests/to-upstream --ext .html",
"update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS.txt",
"benchmark": "node ./benchmark/runner",
"benchmark-browser": "node ./benchmark/runner --bundle",
"convert-idl": "node ./scripts/webidl/convert"
},
"main": "./lib/jsdom"
}