UNPKG

css-zero-lexer

Version:

Friendly and forgiving CSS lexer/parser with lots of tests. Memory-efficient and Web Worker compatible.

59 lines (58 loc) 1.25 kB
{ "name": "css-zero-lexer", "description": "Friendly and forgiving CSS lexer/parser with lots of tests. Memory-efficient and Web Worker compatible.", "version": "1.0.2", "scripts": { "build": "babel src --out-dir build", "prepublishOnly": "npm run build", "test": "jest", "flow": "flow" }, "keywords": [ "css", "sass", "scss", "style", "parser", "lexer", "tokenise", "token", "zero copy", "zerocopy" ], "author": "Matthew Holloway", "license": "GPL-3.0", "repository": { "type": "git", "url": "https://github.com/holloway/xml-zero.js/" }, "//": [ "babel-cli: needed for building", "babel-register: needed for testing via Jest" ], "devDependencies": { "babel-cli": "^6.24.1", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-preset-env": "^1.6.0", "babel-preset-flow": "^6.23.0", "babel-register": "^6.26.0", "flow-bin": "^0.55.0", "jest": "^21.0.2" }, "main": "./build/index.js", "babel": { "presets": [ "flow", [ "env", { "targets": { "node": "3" } } ] ], "plugins": [["transform-object-rest-spread"]] } }