-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "market-pricing",
"version": "1.5.0",
"description": "algorithms for finding competitive equilibrium prices in microeconomics from functions or order queues",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=text mocha --slow 50 --timeout 60000",
"coverage": "nyc --reporter=text-lcov mocha --slow 50 --timeout 60000 | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drpaulbrewer/market-pricing.git"
},
"keywords": [
"prices",
"pricing",
"market",
"competitive-equlibrium",
"Walras",
"Marshall",
"tatonnement"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/drpaulbrewer/market-pricing/issues"
},
"homepage": "https://github.com/drpaulbrewer/market-pricing#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^6.8.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"should": "^13.0.0"
},
"dependencies": {
"find-zero-range": "^3.0.0"
}
}