-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 918 Bytes
/
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
{
"name": "design-patterns-cpp14",
"version": "1.0.23",
"description": "Design patterns implemented in C++14",
"scripts": {
"clean": "cmaki clean",
"setup": "cmaki setup",
"compile": "cmaki compile",
"install": "cmaki setup && cmaki compile",
"test": "cmaki test",
"pack": "cmaki create_package"
},
"keywords": [
"c++",
"design patterns"
],
"author": "Ricardo Marmolejo Garcia",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/makiolo/design-patterns-cpp14.git"
},
"bugs": {
"url": "https://github.com/makiolo/design-patterns-cpp14/issues"
},
"homepage": "https://github.com/makiolo/design-patterns-cpp14#readme",
"dependencies": {
"metacommon": "git+https://github.com/makiolo/metacommon.git"
},
"devDependencies": {
"npm-mas-mas": "git+https://github.com/makiolo/npm-mas-mas.git"
}
}