-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "colint",
"version": "1.0.15",
"description": "Collective intelligence library",
"author": "Aubrey Keus <[email protected]>",
"homepage": "https://github.com/aekeus/colint",
"bugs": "https://github.com/aekeus/colint/issues",
"repository": {
"type": "git",
"url": "https://github.com/aekeus/colint.git"
},
"dependencies": {
"optimist": "*",
"pdfkit": "^0.8.0",
"underscore": "*",
"xml2js": "^0.4.17"
},
"devDependencies": {
"coffee-script": "*",
"docco": "^0.7.0",
"tap": "*"
},
"keywords": [
"artificial intelligence",
"collective intelligence",
"bayes",
"classification",
"regression",
"recommendation",
"decision tree"
],
"engine": "node >= 10.0.*",
"scripts": {
"clean": "rm -rf dist/* && rm -rf docs",
"test": "tap test",
"build-js": "coffee -b -c -o dist/ lib/",
"build-docs": "docco -o docs lib/*.coffee",
"build-all": "npm run clean && npm run build-js",
"build-docs": "npm run build-docs",
"postinstall": "npm run build-all"
}
}