systemjs/package.json
2017-01-23 10:38:16 +02:00

38 lines
1.3 KiB
JSON

{
"name": "systemjs",
"version": "0.20.0-alpha",
"description": "Universal dynamic module loader",
"repository": {
"type": "git",
"url": "git://github.com/systemjs/systemjs"
},
"author": "Guy Bedford",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/system.src.js",
"devDependencies": {
"bluebird": "^3.4.6",
"es-module-loader": "^1.3.5",
"mocha": "^3.1.2",
"plugin-typescript": "^5.2.7",
"rollup": "^0.34.13",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"systemjs-plugin-babel": "0.0.17",
"systemjs-plugin-traceur": "0.0.3",
"traceur": "0.0.111",
"typescript": "^2.0.6"
},
"scripts": {
"build": "rollup -c",
"min": "uglifyjs dist/system.src.js -cm --in-source-map dist/system.src.js.map --source-map dist/system.js.map --screw-ie8 --comments '/SystemJS v/' > dist/system.js",
"footprint": "uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c",
"test": "npm run test:babel && npm run test:traceur && npm run test:typescript",
"test:traceur": "mocha test/test-traceur.js -u tdd --reporter dot",
"test:babel": "mocha test/test-babel.js -u tdd --reporter dot",
"test:typescript": "mocha test/test-typescript.js -u tdd --reporter dot"
}
}