2017-10-02 17:12:14 +02:00
{
"name" : "test262" ,
2019-04-24 17:48:29 +02:00
"version" : "4.0.0" ,
2017-10-02 17:12:14 +02:00
"description" : "Test262 tests conformance to the continually maintained draft future ECMAScript standard found at http://tc39.github.io/ecma262/ , together with any Stage 3 or later TC39 proposals." ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/tc39/test262.git"
} ,
"license" : "BSD" ,
"bugs" : {
"url" : "https://github.com/tc39/test262/issues"
} ,
"private" : true ,
2018-11-06 21:34:53 +01:00
"homepage" : "https://github.com/tc39/test262#readme" ,
"devDependencies" : {
2019-04-24 23:26:45 +02:00
"jsvu" : "^1.7.1" ,
"test262-harness" : "^6.2.0"
2018-11-06 21:34:53 +01:00
} ,
"scripts" : {
2019-04-24 18:17:18 +02:00
"ci" : "./tools/scripts/ci_test.sh" ,
"test" : "test262-harness" ,
2019-07-08 21:32:35 +02:00
"diff" : "git diff --diff-filter ACMR --name-only master.. -- test/ && git ls-files --exclude-standard --others -- test/" ,
2019-04-24 18:17:18 +02:00
"test:diff" : "npm run test:diff:v8 && npm run test:diff:spidermonkey && npm run test:diff:chakra && npm run test:diff:javascriptcore" ,
2019-07-08 21:32:35 +02:00
"test:diff:v8" : "test262-harness -t 8 --hostType=d8 --hostPath=v8 $(npm run --silent diff)" ,
"test:diff:spidermonkey" : "test262-harness -t 8 --hostType=jsshell --hostPath=spidermonkey $(npm run --silent diff)" ,
"test:diff:chakra" : "test262-harness -t 8 --hostType=ch --hostPath=chakra $(npm run --silent diff)" ,
"test:diff:javascriptcore" : "test262-harness -t 8 --hostType=jsc --hostPath=javascriptcore $(npm run --silent diff)" ,
"test:diff:xs" : "test262-harness -t 8 --hostType=xs --hostPath=xs $(npm run --silent diff)"
2018-11-06 21:34:53 +01:00
}
2017-10-02 17:12:14 +02:00
}