-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "aopifyjs",
"version": "0.1.12",
"description": "Agent-oriented programming in Javascript.",
"main": "./lib/index.js",
"scripts": {
"test": "nyc mocha",
"lint": "eslint --ignore-path .eslintignore .",
"lint-fix": "eslint --ignore-path .eslintignore . -- --fix",
"cover": "nyc mocha && nyc report --reporter=text-lcov | coveralls",
"report-cover": "nyc report --reporter=text-lcov | coveralls"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/patelotech/aopifyjs.git"
},
"keywords": [
"agent-oriented programming",
"agents",
"agent-oriented",
"multi-agent",
"decision-making",
"decision",
"prescriptive analytics",
"operations research",
"decision science",
"analytics"
],
"author": "Patricio J. Gerpe",
"license": "gpl-3.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0"
},
"dependencies": {
"ahp-lite": "^1.2.1",
"capitalizefirstletterofstring": "^1.1.0",
"moment": "^2.23.0",
"topsis": "^1.2.11",
"uuid-v4": "^0.1.0"
}
}