mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
45 lines
2.1 KiB
JSON
45 lines
2.1 KiB
JSON
{
|
|
"name": "systemjs",
|
|
"version": "0.20.0-alpha.1",
|
|
"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": "ModuleLoader/es-module-loader#next",
|
|
"mocha": "^3.1.2",
|
|
"plugin-typescript": "^5.2.7",
|
|
"rollup": "^0.36.4",
|
|
"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": "npm run build:dev && npm run build:production",
|
|
"build:dev": "rollup -c",
|
|
"build:production": "rollup -c --environment production",
|
|
"min": "npm run min:dev && npm run min:production",
|
|
"min:dev": "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",
|
|
"min:production": "uglifyjs dist/system-production.src.js -cm --in-source-map dist/system-production.src.js.map --source-map dist/system-production.js.map --screw-ie8 --comments '/SystemJS v/' > dist/system-production.js",
|
|
"footprint": "npm run footprint:dev && npm run footprint:production",
|
|
"footprint:dev": "uglifyjs dist/system.src.js -cm --screw-ie8 | gzip -9f | wc -c",
|
|
"footprint:production": "uglifyjs dist/system-production.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",
|
|
"irhydra": "node --trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces --redirect-code-traces-to=code.asm --print-opt-code --trace_hydrogen_file=hydrogen.cfg irhydra/load.js"
|
|
}
|
|
}
|