forked from microsoft/paris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@microsoft/paris",
"version": "1.10.3",
"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": "[email protected]"
},
"contributors": [
{
"name": "Shai Rose",
"email": "[email protected]"
},
{
"name": "Omer Mizrahi",
"email": "[email protected]"
},
{
"name": "Ben Grynhaus",
"email": "[email protected]"
}
],
"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": "^2.7.2",
"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": {}
}