123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "name": "simple-html-tokenizer",
- "version": "0.5.11",
- "description": "Simple HTML Tokenizer is a lightweight JavaScript library that can be used to tokenize the kind of HTML normally found in templates.",
- "keywords": [
- "html",
- "tokenizer"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/tildeio/simple-html-tokenizer.git"
- },
- "license": "MIT",
- "main": "dist/simple-html-tokenizer.js",
- "module": "dist/es6/index.js",
- "types": "dist/types/index.d.ts",
- "files": [
- "dist",
- "!dist/tests"
- ],
- "scripts": {
- "build": "ember build",
- "lint": "tslint -p tsconfig.json",
- "prepare": "ember build",
- "prepublish": "rm -rf node_modules/in-repo-commands && ln -s ../commands node_modules/in-repo-commands && rm -rf node_modules/symlink-self && ln -s ../lib/symlink-self node_modules/symlink-self",
- "test": "ember test && nyc qunit dist/tests/tests.js"
- },
- "devDependencies": {
- "@types/qunit": "^2.5.0",
- "broccoli-concat": "^3.0.5",
- "broccoli-funnel": "^2.0.1",
- "broccoli-merge-trees": "^3.0.0",
- "broccoli-rollup": "^2.0.0",
- "broccoli-tslinter": "^3.0.1",
- "broccoli-typescript-compiler": "^2.2.0",
- "ember-cli": "^3.0.0",
- "got": "^8.2.0",
- "in-repo-commands": "file:./commands",
- "nyc": "^11.4.1",
- "qunit": "^2.5.1",
- "release-it": "^14.0.2",
- "release-it-lerna-changelog": "^2.4.0",
- "rollup-plugin-sourcemaps": "^0.4.2",
- "symlink-self": "file:./lib/symlink-self",
- "tslint": "^5.9.1",
- "typescript": "^2.7.2"
- },
- "publishConfig": {
- "registry": "https://registry.npmjs.org"
- },
- "release-it": {
- "plugins": {
- "release-it-lerna-changelog": {
- "infile": "CHANGELOG.md",
- "launchEditor": true
- }
- },
- "git": {
- "tagName": "v${version}"
- },
- "github": {
- "release": true,
- "tokenRef": "GITHUB_AUTH"
- }
- }
- }
|