idyll-compiler
Version:
Compiler for idyll
60 lines (59 loc) • 1.59 kB
JSON
{
"name": "idyll-compiler",
"version": "5.0.0-alpha.2",
"description": "Compiler for idyll",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.mjs"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"type": "commonjs",
"scripts": {
"prebuild": "rimraf dist",
"compile": "nearleyc src/grammar.ne -o src/grammar.js",
"build": "npm run compile && rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w",
"test": "npm run build && mocha --require esm",
"prepublish": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idyll-lang/idyll.git"
},
"keywords": [
"idyll",
"compiler"
],
"author": "Matthew Conlen",
"license": "MIT",
"bugs": {
"url": "https://github.com/idyll-lang/idyll/issues"
},
"homepage": "https://github.com/idyll-lang/idyll#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"concurrently": "^4.1.0",
"cross-env": "^5.0.5",
"esm": "^3.2.25",
"expect.js": "^0.3.1",
"mocha": "8",
"rimraf": "^2.6.2",
"rollup": "^2.70.0"
},
"dependencies": {
"gray-matter": "^3.1.1",
"idyll-ast": "^3.0.0-alpha.1",
"lex": "^1.7.9",
"nearley": "^2.20.1",
"smartquotes": "^2.0.0"
},
"gitHead": "66071c8c3f5da0c2203369780ba6d7ba87e2ffd3"
}