Skip to content

Commit aa04c11

Browse files
authored
Merge pull request #47 from accordproject/mttrbrts-patch-1
Add engines declaration to each template
2 parents d60f980 + 3481d48 commit aa04c11

File tree

14 files changed

+45
-0
lines changed

14 files changed

+45
-0
lines changed

acceptance-of-delivery/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"description": "This clause allows the receiver of goods to inspect them for a given time period after delivery.",
55
"author": "clause.io",
66
"license": "Apache-2.0",
7+
"engines":{
8+
"cicero": "^0.3"
9+
},
710
"cicero": {
811
"template": "clause",
912
"version": "^0.3.0"

copyright-license/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"description": "This clause is a copyright license agreement.",
55
"author": "clause.io",
66
"license": "Apache-2.0",
7+
"engines":{
8+
"cicero": "^0.3"
9+
},
710
"cicero": {
811
"template": "contract",
912
"version": "^0.3.0"

demandforecast/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"description": "A sample demandforecast clause.",
55
"author": "Jerome Simeon, clause.io",
66
"license": "Apache-2.0",
7+
"engines":{
8+
"cicero": "^0.3"
9+
},
710
"cicero": {
811
"template": "clause",
912
"version": "^0.3.0"

fragile-goods/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"description": "This clause specifies penalties for shocks caused to a fragile package in transport.",
55
"author": "Matt Roberts, clause.io",
66
"license": "Apache-2.0",
7+
"engines":{
8+
"cicero": "^0.3"
9+
},
710
"cicero": {
811
"template": "clause",
912
"version": "^0.3.0"

helloworld/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"template": "clause",
77
"version": "^0.3.0"
88
},
9+
"engines":{
10+
"cicero": "^0.3"
11+
},
912
"scripts": {
1013
"test": "mocha"
1114
},

helloworldstate/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"template": "clause",
77
"version": "^0.3.0"
88
},
9+
"engines":{
10+
"cicero": "^0.3"
11+
},
912
"scripts": {
1013
"test": "mocha"
1114
},

installment-sale/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"template": "clause",
99
"version": "^0.3.0"
1010
},
11+
"engines":{
12+
"cicero": "^0.3"
13+
},
1114
"repository": {
1215
"type": "git",
1316
"url": "git+https://github.com/accordproject/cicero-template-library.git"

ip-payment/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"template": "clause",
99
"version": "^0.3.0"
1010
},
11+
"engines":{
12+
"cicero": "^0.3"
13+
},
1114
"repository": {
1215
"type": "git",
1316
"url": "git+https://github.com/accordproject/cicero-template-library.git"

latedeliveryandpenalty/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"template": "clause",
77
"version": "^0.3.0"
88
},
9+
"engines":{
10+
"cicero": "^0.3"
11+
},
912
"repository": {
1013
"type": "git",
1114
"url": "git+https://github.com/accordproject/cicero-template-library.git"

perishable-goods/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"template": "clause",
99
"version": "^0.3.0"
1010
},
11+
"engines":{
12+
"cicero": "^0.3"
13+
},
1114
"repository": {
1215
"type": "git",
1316
"url": "git+https://github.com/accordproject/cicero-template-library.git"

promissory-note/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"template": "clause",
99
"version": "^0.3.0"
1010
},
11+
"engines":{
12+
"cicero": "^0.3"
13+
},
1114
"repository": {
1215
"type": "git",
1316
"url": "git+https://github.com/accordproject/cicero-template-library.git"

saft/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"scripts": {
66
"test": "mocha"
77
},
8+
"engines":{
9+
"cicero": "^0.3"
10+
},
811
"cicero": {
912
"template": "contract",
1013
"version": "^0.3.0"

servicelevelagreement/package.json

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
"template": "contract",
77
"version": "^0.3.0"
88
},
9+
"engines":{
10+
"cicero": "^0.3"
11+
},
12+
"engines":{
13+
"cicero": "^0.3"
14+
},
915
"scripts": {
1016
"test": "mocha"
1117
},

volumediscount/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"template": "clause",
77
"version": "^0.3.0"
88
},
9+
"engines":{
10+
"cicero": "^0.3"
11+
},
912
"scripts": {
1013
"test": "mocha",
1114
"parse": "cicero parse --template ./ --dsl sample.txt",

0 commit comments

Comments
 (0)