forked from tc39/test262-harness
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 762 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 762 Bytes
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
{
"name": "test262-harness",
"repository": "bterlson/test262-harness",
"version": "3.7.0",
"description": "Node-based harness for test262",
"main": "index.js",
"bin": {
"test262-harness": "bin/run.js"
},
"scripts": {
"test": "node_modules/.bin/tap test/*.js"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chalk": "^1.1.3",
"eshost": "^4.0.0",
"glob": "^7.0.5",
"rx": "^4.1.0",
"test262-parser": "^2.0.7",
"yargs": "^4.7.1"
},
"author": "Brian Terlson",
"license": "BSD-3-Clause",
"files": [
"index.js",
"bin",
"lib",
"test"
],
"devDependencies": {
"rimraf": "^2.5.3",
"tap": "^11.1.0"
}
}