forked from systemjs/systemjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 882 Bytes
/
package.json
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
{
"name": "systemjs",
"version": "0.19.0-dev",
"description": "System loader extension for flexible AMD & CommonJS support",
"repository": {
"type": "git",
"url": "git://github.com/systemjs/systemjs"
},
"author": "Guy Bedford",
"license": "MIT",
"dependencies": {
"es6-module-loader": "^0.17.4",
"when": "^3.7.2"
},
"devDependencies": {
"babel-core": "^5.8.22",
"qunit": "^0.6.2",
"traceur": "0.0.91",
"typescript": "next",
"uglify-js": "~2.4.23"
},
"scripts": {
"test:browser": "make test",
"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"
}
}