webassembly-loader-sw
Version:
Webpack loader for WebAssembly (like wasm-loader but have different export options)
99 lines (98 loc) • 3.63 kB
JSON
{
"name": "webassembly-loader-sw",
"version": "1.1.0",
"description": "Webpack loader for WebAssembly (like wasm-loader but have different export options)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "types/transform.d.ts",
"files": ["dist/", "types/", "tsconfig.json"],
"scripts": {
"build": "rollup -c",
"postbuild": "shx mv types/src/**/*.ts types && shx rm -r types/src",
"start": "rollup -c --watch",
"lint": "(tsc --pretty -p . --noemit || true) && tslint -p . --force",
"lint:fix": "tslint -p . --fix --force",
"lint:commits": "commitlint --to=$(git rev-parse HEAD)",
"release": "standard-version --skip.commit --skip.tag",
"release:as": "standard-version --skip.commit --skip.tag --release-as",
"release:ok": "standard-version --sign --commit-all --skip.bump --skip.changelog",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"ci:lint": "npm run build && tsc --pretty -p . --noemit && tslint -p .",
"ci:test": "jest --runInBand --silent --ci",
"ci:coverage": "jest --collectCoverageFrom='dist/*.js' --coverage --runInBand --silent --ci",
"ci:release": "conventional-github-releaser -p angular",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"test": "concurrently -k -i --default-input-target jest -n rollup,jest \"rollup -c --watch\" \"jest --notify --watch\"",
"test:once": "jest --notify",
"test:coverage": "jest --collectCoverageFrom='dist/*.js' --coverage",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.ts": ["tslint -c tslint.json -p tsconfig.json"]
},
"standard-version": {
"scripts": {
"postbump": "prettier package*.json --write",
"precommit": "git add CHANGELOG.md package*.json"
}
},
"contributors": [
"Martynas Kazlauskas <martynas.kazlauskas@iohk.io> (https://iohk.io)"
],
"repository": "https://github.com/mkazlauskas/webassembly-loader-sw.git",
"keywords": ["webpack-loader", "webassembly", "wasm", "webpack"],
"author": "Fahmi Akbar Wildana",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkazlauskas/webassembly-loader-sw/issues"
},
"devDependencies": {
"@babel/core": "^7.0",
"@babel/plugin-proposal-class-properties": "^7.1",
"@babel/plugin-proposal-export-namespace-from": "^7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0",
"@babel/preset-env": "^7.1",
"@babel/preset-typescript": "^7.1",
"@commitlint/cli": "^7.2",
"@commitlint/config-conventional": "^7.1",
"@types/cosmiconfig": "^5.0",
"@types/jest": "^23.3",
"@types/loader-utils": "^1.1",
"@types/node": "^10.11",
"@types/webassembly-js-api": "0.0.1",
"@types/webpack": "^4.4",
"@webpack-contrib/test-utils": "^0.1",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6",
"concurrently": "^4.0",
"conventional-github-releaser": "^3.1",
"globrex": "^0.1.1",
"husky": "^1.1",
"jest": "^23.6",
"jest-extended": "^0.11",
"lint-staged": "^7.3",
"prettier": "^1.14",
"pretty-quick": "^1.7",
"rollup": "^0.66",
"rollup-plugin-auto-external": "^2.0",
"rollup-plugin-babel": "^4.0",
"rollup-plugin-commonjs": "^9.1",
"rollup-plugin-json": "^3.1",
"rollup-plugin-node-resolve": "^3.4",
"rollup-plugin-prettier": "^0.4",
"rollup-plugin-typescript2": "^0.17",
"shx": "^0.3.2",
"standard-version": "^4.4",
"ts-jest": "^23.10",
"ts-node": "^7.0",
"tslint": "^5.11",
"tslint-config-prettier": "^1.15",
"typescript": "^3.1",
"webpack": "^4.20"
},
"dependencies": {
"loader-utils": "^1.1.0",
"schema-utils": "^1.0.0",
"typescript-json-schema": "^0.40.0"
}
}