forked from systemjs/systemjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 907 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
31
32
33
34
{
"name": "systemjs",
"version": "0.19.36",
"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"
}
}