-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "concept-network",
"description": "Concept Network is weighted directed graph, in which activation values are propagated.",
"version": "2.0.0",
"homepage": "https://github.com/parmentf/node-concept-network",
"author": {
"name": "François Parmentier",
"email": "francois.parmentier@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/parmentf/node-concept-network.git"
},
"bugs": {
"url": "https://github.com/parmentf/node-concept-network/issues"
},
"license": "MIT",
"main": "index",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"build:w": "tsc --watch",
"build": "tsc",
"doc": "documentation readme src/** -f md --section=Functions",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "jest --coverage"
},
"dependencies": {
"ramda": "0.26.1"
},
"devDependencies": {
"@types/ramda": "0.25.46",
"babel-core": "6.26.3",
"babel-jest": "23.6.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-3": "6.24.1",
"documentation": "9.1.1",
"jest": "23.6.0",
"typescript": "3.2.2"
},
"keywords": [
"graph",
"weighted",
"propagation"
],
"readmeFilename": "README.md"
}