|
| 1 | +{ |
| 2 | + "name": "@author.io/element-control", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "author-control custom element (web component).", |
| 5 | + "main": "dist/author-control.min.js", |
| 6 | + "scripts": { |
| 7 | + "build": "npm run clean && rollup -c ./rollup.release.config.js", |
| 8 | + "clean": "node clean.js", |
| 9 | + "deploy": "npm run build && npm publish --access public", |
| 10 | + "test": "npm run build && karma start karma.conf.es6.js && karma start karma.conf.es6-modules.js && karma start karma.conf.es5.js && npm run test:syntax", |
| 11 | + "test:syntax": "standard --verbose | snazzy", |
| 12 | + "test:es5": "npm run build && karma start karma.conf.es5.js", |
| 13 | + "test:es5:local": "npm run build && karma start karma.conf.es5.js --local && npm run test:syntax", |
| 14 | + "test:es6": "npm run build && karma start karma.conf.es6.js", |
| 15 | + "test:es6:local": "npm run build && karma start karma.conf.es6.js --local && npm run test:syntax", |
| 16 | + "test:es6-modules": "npm run build && karma start karma.conf.es6-modules.js", |
| 17 | + "test:es6-modules:local": "npm run build && karma start karma.conf.es6-modules.js --local && npm run test:syntax", |
| 18 | + "test:es5:sauce": "TRAVIS_BUILD_NUMBER=1 && npm run build && karma start karma.conf.es5.js" |
| 19 | + }, |
| 20 | + "files": [ |
| 21 | + "dist/*.js", |
| 22 | + "dist/*.js.map" |
| 23 | + ], |
| 24 | + "repository": { |
| 25 | + "type": "git", |
| 26 | + "url": "git+https://github.com/author-elements/control.git" |
| 27 | + }, |
| 28 | + "keywords": [ |
| 29 | + "author", |
| 30 | + "web", |
| 31 | + "component", |
| 32 | + "custom", |
| 33 | + "element", |
| 34 | + "form", |
| 35 | + "control", |
| 36 | + "chassis", |
| 37 | + "ngn" |
| 38 | + ], |
| 39 | + "author": { |
| 40 | + "name": "Author.io", |
| 41 | + "url": "https://author.io" |
| 42 | + }, |
| 43 | + "contributors": [ |
| 44 | + { |
| 45 | + "name": "Graham Butler", |
| 46 | + "url": "http://grahambutler.com" |
| 47 | + }, |
| 48 | + { |
| 49 | + "name": "Corey Butler", |
| 50 | + "url": "http://coreybutler.com" |
| 51 | + } |
| 52 | + ], |
| 53 | + "license": "MIT", |
| 54 | + "bugs": { |
| 55 | + "url": "https://github.com/author-elements/control/issues" |
| 56 | + }, |
| 57 | + "homepage": "https://github.com/author-elements/control#readme", |
| 58 | + "devDependencies": { |
| 59 | + "@author.io/karma-customelements": "^1.1.11", |
| 60 | + "@author.io/rollup-plugin-wcbuilder": "^1.1.4", |
| 61 | + "fs-extra": "^7.0.1", |
| 62 | + "karma": "^4.0.0", |
| 63 | + "rollup": "^1.1.0", |
| 64 | + "rollup-plugin-buble": "^0.19.6", |
| 65 | + "rollup-plugin-terser": "^4.0.2", |
| 66 | + "rollup-plugin-uglify": "^6.0.1", |
| 67 | + "rollupify": "^0.5.1", |
| 68 | + "snazzy": "^8.0.0", |
| 69 | + "standard": "^12.0.1", |
| 70 | + "tap": "^12.1.1", |
| 71 | + "tape": "^4.9.2" |
| 72 | + }, |
| 73 | + "standard": { |
| 74 | + "ignore": [ |
| 75 | + "_*", |
| 76 | + "_**/*", |
| 77 | + "test/lib/**/*", |
| 78 | + "node_modules", |
| 79 | + "dist", |
| 80 | + "rollup*.js" |
| 81 | + ], |
| 82 | + "globals": [ |
| 83 | + "customElements", |
| 84 | + "KeyboardEvent", |
| 85 | + "crypto", |
| 86 | + "msCrypto", |
| 87 | + "CustomEvent", |
| 88 | + "window", |
| 89 | + "MutationObserver", |
| 90 | + "DOMParser", |
| 91 | + "XMLHttpRequest", |
| 92 | + "FormData", |
| 93 | + "btoa", |
| 94 | + "localStorage", |
| 95 | + "fetch", |
| 96 | + "Element", |
| 97 | + "HTMLElement", |
| 98 | + "NodeFilter" |
| 99 | + ] |
| 100 | + }, |
| 101 | + "dependencies": {}, |
| 102 | + "publishConfig": { |
| 103 | + "access": "public" |
| 104 | + } |
| 105 | +} |
0 commit comments