зеркало из https://github.com/microsoft/paris.git
117 строки
2.7 KiB
JSON
117 строки
2.7 KiB
JSON
{
|
|
"name": "@microsoft/paris",
|
|
"version": "1.11.1",
|
|
"description": "Library for the implementation of Domain Driven Design with TypeScript + RxJS",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/paris"
|
|
},
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "gulp build",
|
|
"dev": "rollup -c -w",
|
|
"prepublish": "npm run build && npm run test",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"docs": "typedoc --options typedocconfig.ts"
|
|
},
|
|
"author": {
|
|
"name": "Yossi Kolesnicov",
|
|
"email": "Yossi.Kolesnicov@microsoft.com"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Shai Rose",
|
|
"email": "Shai.Rose@microsoft.com"
|
|
},
|
|
{
|
|
"name": "Omer Mizrahi",
|
|
"email": "Omer.Mizrahi@microsoft.com"
|
|
},
|
|
{
|
|
"name": "Ben Grynhaus",
|
|
"email": "bengr@microsoft.com"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@compodoc/compodoc": "^1.0.0-beta.7",
|
|
"@types/async": "^2.0.32",
|
|
"@types/browser-sync": "^0.0.36",
|
|
"@types/es6-shim": "^0.31.32",
|
|
"@types/express": "^4.0.33",
|
|
"@types/gulp": ">=4.0.0",
|
|
"@types/gulp-filter": "^3.0.29",
|
|
"@types/gulp-htmlmin": "^1.3.30",
|
|
"@types/gulp-load-plugins": "^0.0.30",
|
|
"@types/gulp-protractor": "^1.0.30",
|
|
"@types/gulp-sass": "^0.0.30",
|
|
"@types/gulp-util": "^3.0.29",
|
|
"@types/jest": "^24.0.0",
|
|
"@types/json-stringify-safe": "^5.0.0",
|
|
"@types/lodash-es": "4.17.1",
|
|
"@types/node": "^8.0.25",
|
|
"@types/rimraf": "2.0.2",
|
|
"@types/run-sequence": "^0.0.29",
|
|
"@types/systemjs": "^0.20.2",
|
|
"@types/yargs": "^8.0.2",
|
|
"core-js": ">=2.4.1",
|
|
"gulp": "^4.0.2",
|
|
"gulp-clean": "^0.3.2",
|
|
"gulp-concat": "^2.6.1",
|
|
"gulp-typescript": "^5.0.1",
|
|
"husky": "^1.0.0-rc.13",
|
|
"intl": "^1.2.5",
|
|
"jest": "^24.7.1",
|
|
"json-stringify-safe": "^5.0.1",
|
|
"lodash-es": "4.17.15",
|
|
"merge2": "^1.0.2",
|
|
"reflect-metadata": "^0.1.12",
|
|
"rimraf": "~2.5.4",
|
|
"rollup": "^0.50.0",
|
|
"rollup-plugin-commonjs": "^8.2.4",
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
|
"rollup-plugin-typescript": "^0.8.1",
|
|
"run-sequence": "^2.2.0",
|
|
"rxjs": "^6.4.0",
|
|
"standard-version": "^3.0.0",
|
|
"systemjs": ">=0.20.12",
|
|
"ts-jest": "^24.0.0",
|
|
"ts-node": "^7.0.0",
|
|
"typedoc": "^0.11.1",
|
|
"typescript": "3.1.8",
|
|
"zone.js": ">=0.8.7"
|
|
},
|
|
"peerDependencies": {
|
|
"rxjs": ">=6.4.0",
|
|
"lodash-es": "4.5.0"
|
|
},
|
|
"bundledDependencies": [
|
|
"json-stringify-safe"
|
|
],
|
|
"jest": {
|
|
"transform": {
|
|
"^.+\\.(js|ts)$": "ts-jest"
|
|
},
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/dist/"
|
|
],
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/jest-setup.ts"
|
|
],
|
|
"testRegex": "\\.(test|spec)\\.(ts|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"js",
|
|
"json",
|
|
"node"
|
|
],
|
|
"transformIgnorePatterns": [
|
|
"<rootDir>/node_modules/(?!lodash-es)"
|
|
]
|
|
},
|
|
"dependencies": {}
|
|
}
|