manhattan-manage
Version:
Support for the manhattan web framework's manage UI
87 lines (86 loc) • 2.33 kB
JSON
{
"name": "manhattan-manage",
"version": "1.5.11",
"description": "Support for the manhattan web framework's manage UI",
"engines": {
"node": ">=8.9.4"
},
"main": "umd/index.js",
"module": "module/index.js",
"files": [
"module",
"scss",
"images",
"umd"
],
"scripts": {
"build": "webpack --mode production || exit 0",
"build-css": "node-sass --include-path scss scss/ -o spec/",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"dev-build": "webpack --mode development || exit 0",
"lint": "eslint module spec *.js --quiet || exit 0",
"test": "cross-env NODE_ENV=test nyc mocha ./spec/**/*.spec.js || exit 0",
"watch": "webpack --mode development --watch || exit 0",
"watch-css": "node-sass --include-path scss scss/ -wo spec/"
},
"nyc": {
"exclude": [
"spec/setup.js",
"spec/**/*.spec.js"
],
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git@github.com:GetmeUK/manhattan-js-manage.git"
},
"keywords": [
"manhattan",
"file upload",
"image upload"
],
"author": "Anthony Blackshaw",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.18.1",
"jsdom": "^11.6.2",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"node-sass": "^4.7.2",
"nyc": "^11.4.1",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.9"
},
"dependencies": {
"manhattan-assets": "^1.0.1",
"manhattan-character-count": "^1.0.4",
"manhattan-date-picker": "^1.0.5",
"manhattan-essentials": "^1.0.0",
"manhattan-field-filled": "^1.0.2",
"manhattan-interactions": "^1.0.0",
"manhattan-sortable": "^1.0.3",
"manhattan-time-picker": "^1.0.3",
"manhattan-typeahead": "^1.0.10"
}
}