-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.07 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.07 KB
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
{
"name": "patrones",
"version": "1.0.0",
"description": "Patrones de diseño con TypeScript",
"scripts": {
"test-singleton": "mocha -r ts-node/register creational/singleton/*.spec.ts",
"test-factory": "mocha -r ts-node/register creational/factory/*.spec.ts",
"test-abstract-factory": "mocha -r ts-node/register creational/abstract-factory/*.spec.ts",
"test-adapter": "mocha -r ts-node/register structural/adapter/*.spec.ts",
"test-decorator": "mocha -r ts-node/register structural/decorator/*.spec.ts",
"test-proxy": "mocha -r ts-node/register structural/proxy/*.spec.ts",
"test-command": "mocha -r ts-node/register behaviour/command/*.spec.ts",
"test-observer": "mocha -r ts-node/register behaviour/observer/*.spec.ts",
"test-strategy": "mocha -r ts-node/register behaviour/strategy/*.spec.ts"
},
"author": "kodoti",
"license": "ISC",
"dependencies": {
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"ts-node": "^8.10.1"
}
}