Files
sdk/pkg/dev_compiler/package.json
T
Vijay Menon f79e110387 Automated runtime tests using Karma
To use:

1. Install node (e.g., install from nodejs.org or sudo apt-get install npm)
2. npm install
3. npm test

R=jacobr@google.com

Review URL: https://codereview.chromium.org/1092213003
2015-04-20 19:31:18 -07:00

28 lines
723 B
JSON

{
"name": "dev_compiler",
"version": "0.1.0",
"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": {
"test": "./node_modules/.bin/karma start --single-run"
},
"devDependencies": {
"chai": "^2.2.0",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.8",
"karma-mocha": "^0.1.10",
"karma-requirejs": "^0.2.2",
"mocha": "^2.2.4",
"requirejs": "^2.1.17"
}
}