dart-sdk/pkg/dev_compiler/package.json
Vijay Menon 9732138317 Testing support for FF and Safari
Also travis support for testing FF.  See:

https://travis-ci.org/dart-lang/sdk/builds/159331789

On FF 48, 1965 out of 1979 tests are passing.  Run locally:
DDC_BROWSERS=Firefox npm test

On Safari 10 (tech preview), it fails immediately due to a static method named "caller".  We disallow it as a field, but not a method right now.  If I hack that out, 1972 out of 1979 tests appear to pass.

Run locally by installing tech preview and running:
DDC_BROWSERS=Safari SAFARI_BIN=/Applications/Safari\ Technology\ Preview.app/Contents/MacOS/Safari\ Technology\ Preview npm test
R=jmesserly@google.com, rnystrom@google.com

Review URL: https://codereview.chromium.org/2334763002 .
2016-09-14 08:41:43 -07:00

34 lines
979 B
JSON

{
"name": "dev_compiler",
"version": "0.1.24",
"description": "Dart Development Compiler",
"homepage": "https://github.com/dart-lang/dev_compiler",
"bugs": "https://github.com/dart-lang/dev_compiler/issues",
"contributors": {
"Dart Team": "dev-compiler@dartlang.org"
},
"repository": {
"type": "git",
"url": "https://github.com/dart-lang/dev_compiler.git"
},
"scripts": {
"postinstall": "./node_modules/.bin/webdriver-manager update",
"test": "./node_modules/.bin/karma start --single-run"
},
"devDependencies": {
"chai": "^2.2.0",
"electron-prebuilt": "^0.36.0",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.8",
"karma-electron-launcher": "^0.0.5",
"karma-firefox-launcher": "~0.1",
"karma-mocha": "^0.1.10",
"karma-requirejs": "^0.2.2",
"karma-safari-launcher": "^1.0.0",
"mocha": "^2.2.4",
"requirejs": "^2.1.17",
"webdriver-manager": "8.0.0"
}
}