systemjs/package.json
2020-04-06 16:04:45 -07:00

57 lines
1.8 KiB
JSON

{
"name": "systemjs",
"version": "6.2.6",
"main": "dist/system-node.cjs",
"exports": {
"node": "./dist/system-node.cjs",
"default": "./dist/system.min.js"
},
"description": "Dynamic ES module loader",
"repository": {
"type": "git",
"url": "git://github.com/systemjs/systemjs"
},
"author": "Guy Bedford",
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@jsenv/github-pull-request-filesize-impact": "^2.6.0",
"bluebird": "^3.7.2",
"concurrently": "^5.1.0",
"construct-style-sheets-polyfill": "^2.3.5",
"cross-env": "^7.0.2",
"esm": "^3.2.25",
"mocha": "^7.1.1",
"node-fetch": "^2.6.0",
"opn": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.2.0",
"rollup-plugin-terser": "^5.3.0",
"terser": "^4.6.7",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"build:dev": "rollup -c --environment dev",
"footprint": "npm run footprint:systemjs && npm run footprint:sjs",
"footprint:systemjs": "cat dist/system.min.js | gzip -9f | wc -c",
"footprint:sjs": "cat dist/s.min.js | gzip -9f | wc -c",
"test": "concurrently -n w: 'npm:test:*'",
"test:internals": "mocha -b -r esm --file test/mocha-setup.js test/import-map.js test/system-core.js test/url-resolution.js",
"test:node": "mocha -b -r esm --file test/mocha-setup.js test/system-node.js",
"test:browser": "node test/server.cjs",
"test-browser-watch": "cross-env WATCH_MODE=true node test/server.cjs",
"prepublish": "npm run build"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/systemjs"
}
}