mout
Version:
Modular Utilities
120 lines (119 loc) • 2.76 kB
JSON
{
"name": "mout",
"version": "2.0.0-alpha.1",
"description": "Modular Utilities",
"keywords": [
"utilities",
"functional",
"amd-utils",
"stdlib"
],
"homepage": "http://moutjs.com/",
"bugs": {
"url": "https://github.com/mout/mout/issues/"
},
"repository": {
"type": "git",
"url": "git://github.com/mout/mout.git"
},
"license": "MIT",
"author": "Miller Medeiros <contact@millermedeiros.com> (http://blog.millermedeiros.com)",
"contributors": [
"Adam Nowotny",
"André Cruz <amdfcruz@gmail.com>",
"Conrad Zimmerman (http://www.conradz.com)",
"Friedemann Altrock <frodenius@gmail.com>",
"Igor Almeida <igor.p.almeida@gmail.com>",
"Jarrod Overson (http://jarrodoverson.com)",
"Mathias Paumgarten <mail@mathias-paumgarten.com>",
"Zach Shipley"
],
"sideEffects": false,
"main": "./index.js",
"directories": {
"doc": "./doc"
},
"scripts": {
"lint": "eslint src/**/*.ts tests/**/*.js _build/*.js build.js",
"fix": "npm run lint -- --fix",
"test": "npm run tsc && mv dist/* . && node tests/runner.js && node build prune",
"tsc": "tsc --project tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-eslint": "^10.1.0",
"commander": "~2.16.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"handlebars": "^4.7.6",
"husky": "^3.1.0",
"jasmine": "^3.5.0",
"lint-staged": "^9.5.0",
"mdoc": "~0.5.3",
"nodefy": "~0.2.2",
"prettier": "^1.19.1",
"regenerate": "~1.4.0",
"rimraf": "~2.6.2",
"rocambole": "~0.7.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"testling": {
"preprocess": "node build testling",
"browsers": {
"ie": [
7,
8,
9,
10
],
"firefox": [
17,
"nightly"
],
"chrome": [
23,
"canary"
],
"opera": [
12,
"next"
],
"safari": [
5.1,
6
],
"iphone": [
6
],
"ipad": [
6
]
},
"scripts": [
"tests/lib/jasmine/jasmine.js",
"tests/lib/jasmine/jasmine.async.js",
"tests/lib/jasmine/jasmine-tap.js",
"tests/lib/requirejs/require.js",
"tests/testling/src.js",
"tests/testling/specs.js",
"tests/runner.js"
]
}
}