-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 973 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
{
"name": "ahp-tool",
"version": "1.0.0",
"description": "Analytic Hierarchy Process (AHP) Tool",
"main": "js/index.js",
"scripts": {
"start": "open index.html",
"build": "./node_modules/rollup/dist/bin/rollup -c",
"test": "./node_modules/mocha/bin/mocha.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ComcastSamples/ahp-tool.git"
},
"keywords": [
"AHP"
],
"author": "John Riviello",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ComcastSamples/ahp-tool/issues"
},
"homepage": "https://comcastsamples.github.io/ahp-tool/",
"dependencies": {
"ahp": "^2.4.2",
"chartist": "^0.11.4",
"lodash-es": "^4.17.10"
},
"devDependencies": {
"chai": "^4.2.0",
"jsdom": "^21.1.1",
"mocha": "^10.2.0",
"rollup": "^1.14.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.0.1"
}
}