mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
73 lines
2.3 KiB
JSON
73 lines
2.3 KiB
JSON
{
|
|
"name": "marko",
|
|
"description": "Marko is an extensible, streaming, asynchronous, high performance, HTML-based templating language that can be used in Node.js or in the browser.",
|
|
"keywords": [
|
|
"templating",
|
|
"template",
|
|
"async",
|
|
"streaming"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/marko-js/marko.git"
|
|
},
|
|
"scripts": {
|
|
"init-tests": "./test/init-tests.sh",
|
|
"test": "npm run init-tests && node_modules/.bin/mocha --ui bdd --reporter spec ./test && node_modules/.bin/jshint compiler/ runtime/ taglibs/",
|
|
"test-fast": "npm run init-tests && node_modules/.bin/mocha --ui bdd --reporter spec ./test/render-test",
|
|
"test-async": "npm run init-tests && node_modules/.bin/mocha --ui bdd --reporter spec ./test/render-async-test",
|
|
"test-taglib-loader": "npm run init-tests && node_modules/.bin/mocha --ui bdd --reporter spec ./test/taglib-loader-test",
|
|
"jshint": "node_modules/.bin/jshint compiler/ runtime/ taglibs/"
|
|
},
|
|
"author": "Patrick Steele-Idem <pnidem@gmail.com>",
|
|
"maintainers": [
|
|
"Patrick Steele-Idem <pnidem@gmail.com>"
|
|
],
|
|
"dependencies": {
|
|
"app-module-path": "^1.0.0",
|
|
"async-writer": "^1.4.0",
|
|
"browser-refresh-client": "^1.0.0",
|
|
"char-props": "~0.1.5",
|
|
"esprima": "^2.7.0",
|
|
"events": "^1.0.2",
|
|
"htmljs-parser": "^1.0.6",
|
|
"jsonminify": "^0.2.3",
|
|
"minimatch": "^0.2.14",
|
|
"property-handlers": "^1.0.0",
|
|
"raptor-args": "^1.0.0",
|
|
"raptor-json": "^1.0.1",
|
|
"raptor-logging": "^1.0.1",
|
|
"raptor-modules": "^1.0.5",
|
|
"raptor-polyfill": "^1.0.0",
|
|
"raptor-promises": "^1.0.1",
|
|
"raptor-regexp": "^1.0.0",
|
|
"raptor-strings": "^1.0.0",
|
|
"raptor-util": "^1.0.0",
|
|
"resolve-from": "^1.0.0",
|
|
"try-require": "^1.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"bluebird": "^2.9.30",
|
|
"chai": "^3.3.0",
|
|
"jshint": "^2.5.0",
|
|
"mocha": "^2.3.3",
|
|
"through": "^2.3.4"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"bin": {
|
|
"markoc": "bin/markoc"
|
|
},
|
|
"main": "runtime/marko-runtime.js",
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"browser": {
|
|
"./node-require.js": "./node-require-browser.js"
|
|
},
|
|
"homepage": "http://markojs.com/",
|
|
"version": "3.0.0-beta.1",
|
|
"logo": {
|
|
"url": "https://raw.githubusercontent.com/marko-js/branding/master/marko-logo-small.png"
|
|
}
|
|
}
|