UNPKG

trusted-types

Version:

Polyfill for the Trusted Types

78 lines (77 loc) 2.35 kB
{ "name": "trusted-types", "version": "2.0.0", "description": "Polyfill for the Trusted Types", "main": "build/cjs/trustedtypes.module.js", "module": "build/esm/trustedtypes.module.js", "directories": { "test": "tests" }, "contributors": [ "Krzysztof Kotowicz <koto@google.com>", "Sebastian Lekies <slekies@google.com>" ], "scripts": { "lint": "eslint src/ tests/", "fix": "eslint --fix src/ tests/", "test": "karma start --single-run", "test:localonly": "karma start --single-run --browsers ChromeHeadless,FirefoxHeadlessDev", "karma": "karma start --browsers ChromeHeadless", "karma:firefox": "karma start --browsers Firefox", "build": "npm-run-all --parallel build:cjs build:esm build:dist-es5 build:dist-es6 --sequential sizereport", "build:cjs": "rollup --file build/cjs/trustedtypes.module.js --format cjs --input src/polyfill/module.js", "build:esm": "rollup --file build/esm/trustedtypes.module.js --format esm --input src/polyfill/module.js", "build:dist-es5": "gulp es5", "build:dist-es6": "gulp es6", "spec": "gulp spec", "sizereport": "gulp sizereport", "add_build": "git add ./dist/" }, "author": "Google Inc.", "license": "W3C-20150513", "devDependencies": { "@babel/core": "^7.5.5", "@babel/polyfill": "^7.4.4", "@babel/preset-env": "^7.5.5", "babelify": "^10.0.0", "bikeshed-js": "^1.0.7", "browserify": "^16.3.0", "eslint": "^5.16.0", "eslint-config-google": "^0.12.0", "eslint-plugin-jasmine": "^2.10.1", "google-closure-compiler": "^20190415.0.0", "gulp": "^4.0.2", "gulp-sizereport": "^1.2.1", "gulp-sourcemaps": "^2.6.5", "jasmine": "^3.4.0", "jasmine-core": "^3.4.0", "karma": "^4.2.0", "karma-browserify": "^6.1.0", "karma-browserstack-launcher": "^1.5.1", "karma-chrome-launcher": "^2.2.0", "karma-firefox-launcher": "^1.1.0", "karma-jasmine": "^2.0.1", "natives": "^1.1.6", "npm-run-all": "^4.1.5", "pre-commit": "^1.2.2", "rollup": "^1.17.0", "watchify": "^3.11.1" }, "dependencies": {}, "pre-commit": [ "lint", "test", "build", "spec", "add_build" ], "files": [ "build", "dist", "externs/externs.js", "package.json", "package-lock.json", "LICENSE.md", "README.md" ] }