aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/package.json')
-rw-r--r--thirdparty/systemjs/package.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/thirdparty/systemjs/package.json b/thirdparty/systemjs/package.json
new file mode 100644
index 000000000..a8caf0f3f
--- /dev/null
+++ b/thirdparty/systemjs/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "systemjs",
+ "version": "0.19.39",
+ "description": "Universal dynamic module loader",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/systemjs/systemjs"
+ },
+ "author": "Guy Bedford",
+ "license": "MIT",
+ "files": [
+ "index.js",
+ "dist"
+ ],
+ "dependencies": {
+ "when": "^3.7.5"
+ },
+ "devDependencies": {
+ "babel-core": "^5.8.22",
+ "qunit": "^0.6.2",
+ "traceur": "0.0.105",
+ "typescript": "^1.6.2",
+ "uglify-js": "~2.4.23"
+ },
+ "scripts": {
+ "test:browser": "make test",
+ "perf": "node bench/normalize-perf.js",
+ "build": "make",
+ "test": "npm run test:babel && npm run test:traceur && npm run test:typescript",
+ "test:babel": "qunit -c s:./index.js -t ./test/test-babel.js",
+ "test:traceur": "qunit -c s:./index.js -t ./test/test-traceur.js",
+ "test:typescript": "qunit -c s:./index.js -t ./test/test-typescript.js"
+ }
+}