-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.71 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
{
"name": "@discipl/law-reg",
"version": "0.7.3",
"description": "Discipl Law and Regulation Compliance Library",
"main": "dist/index.js",
"module": "src/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"/src",
"/dist"
],
"scripts": {
"prepack": "NODE_ENV=production babel src/ --out-dir dist",
"test": "nyc --reporter=html --reporter=text ./node_modules/.bin/mocha --require @babel/register ./test/**/*.spec.js --timeout 10s",
"lint": "./node_modules/standard/bin/cmd.js --parser babel-eslint",
"lint-fix": "./node_modules/standard/bin/cmd.js --parser babel-eslint --fix",
"coverage": "nyc report --reporter=lcov && ./node_modules/codecov/bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discipl/discipl-law-reg.git"
},
"keywords": [
"Compliance",
"By",
"Design",
"FLINT",
"Calculemus"
],
"author": "Bas Kaptijn",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/discipl/discipl-law-reg/issues"
},
"homepage": "https://github.com/discipl/discipl-law-reg#readme",
"dependencies": {
"@discipl/abundance-service": "0.5.3",
"@discipl/core": "^0.12.2",
"@discipl/core-baseconnector": "0.2.1",
"big.js": "^5.2.2",
"jsonc-parser": "^2.1.1",
"loglevel": "1.6.1"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.1",
"@babel/preset-env": "7.10.1",
"@babel/register": "7.10.1",
"@discipl/core-ephemeral": "0.11.3",
"babel-eslint": "10.0.1",
"babel-plugin-dynamic-import-node": "2.2.0",
"chai": "4.2.0",
"codecov": "^3.7.1",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"sinon": "7.2.4",
"standard": "12.0.1"
}
}