UNPKG

2.21 kBJSONView Raw
1{
2 "name": "@accordproject/ergo-engine",
3 "version": "0.8.0",
4 "description": "Ergo Engine",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/accordproject/ergo"
8 },
9 "main": "index.js",
10 "scripts": {
11 "webpack": "webpack --config webpack.config.js --mode production",
12 "prepublishOnly": "npm run webpack",
13 "pretest": "npm run lint",
14 "lint": "eslint .",
15 "postlint": "npm run licchk",
16 "licchk": "license-check",
17 "test:mocha": "mocha",
18 "test:all": "npm run test:mocha",
19 "test:cov": "nyc npm run test:all",
20 "test": "npm run test:all && npm run test:cov"
21 },
22 "contributors": [
23 {
24 "name": "Jerome Simeon",
25 "email": "jerome@clause.io"
26 }
27 ],
28 "license": "Apache-2.0",
29 "publishConfig": {
30 "access": "public"
31 },
32 "files": [
33 "lib",
34 "umd",
35 "index.browser.js"
36 ],
37 "dependencies": {
38 "@accordproject/ergo-compiler": "0.8.0",
39 "composer-concerto": "0.70.2",
40 "moment-mini": "2.22.1",
41 "vm2": "3.5.0"
42 },
43 "devDependencies": {
44 "@babel/cli": "^7.1.5",
45 "@babel/core": "^7.1.6",
46 "@babel/preset-env": "^7.1.6",
47 "archiver": "2.1.1",
48 "babel-core": "^7.0.0-bridge.0",
49 "babel-loader": "^8.0.4",
50 "babel-preset-env": "^1.7.0",
51 "chai": "4.2.0",
52 "chai-as-promised": "7.1.1",
53 "chai-things": "0.2.0",
54 "eslint": "4.19.1",
55 "jsdoc": "3.5.5",
56 "lerna": "2.11.0",
57 "license-check": "1.1.5",
58 "mocha": "5.2.0",
59 "nyc": "13.3.0",
60 "raw-loader": "^0.5.1",
61 "webpack": "^4.16.3",
62 "webpack-cli": "^3.1.0"
63 },
64 "license-check-config": {
65 "src": [
66 "**/*.js",
67 "!./test/data/**/*",
68 "!./coverage/**/*",
69 "!./node_modules/**/*",
70 "!./out/**/*",
71 "!./umd/ergo-engine.js"
72 ],
73 "path": "header.txt",
74 "blocking": true,
75 "logInfo": false,
76 "logError": true
77 },
78 "nyc": {
79 "produce-source-map": "true",
80 "sourceMap": "inline",
81 "reporter": [
82 "lcov",
83 "text-summary",
84 "html",
85 "json"
86 ],
87 "include": [
88 "lib/**/*.js"
89 ],
90 "exclude": [],
91 "all": true,
92 "check-coverage": true,
93 "statements": 93,
94 "branches": 70,
95 "functions": 92,
96 "lines": 93
97 }
98}
\No newline at end of file