-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 971 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
34
35
36
37
38
39
40
{
"name": "@clausehq/clause-model-library",
"version": "2.0.0",
"description": "A library of reuseable Concerto models",
"license": "UNLICENSED",
"author": "Clause Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/clauseHQ/clause-model-library.git"
},
"scripts": {
"licensecheck": "license-check",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"postlint": "npm run licensecheck",
"test": "mocha",
"pretest": "npm run lint"
},
"devDependencies": {
"chai": "^4.1.2",
"@accordproject/concerto-core": "^0.82.11",
"eslint": "^3.19.0",
"glob": "^7.1.2",
"glob-promise": "^3.3.0",
"license-check": "^1.1.5",
"mocha": "^5.0.0",
"chai-as-promised": "^7.1.1"
},
"license-check-config": {
"src": [
"common/**/*",
"physical/**/*",
"logical/**/*"
],
"path": "header.txt",
"blocking": true,
"logInfo": false,
"logError": true
}
}