-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 968 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
39
{
"name": "node-apriori",
"version": "1.0.0",
"description": "Apriori frequent itemset mining algorithm implementation in TypeScript / JavaScript.",
"main": "dist/apriori.js",
"types": "dist/apriori.d.ts",
"scripts": {
"test": "npm run tsc && node examples/example.js",
"tsc": "./node_modules/typescript/bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexisfacques/Node-Apriori.git"
},
"keywords": [
"apriori",
"algorithm",
"frequent",
"data",
"itemset",
"mining",
"association",
"rules",
"data mining"
],
"author": "Alexis Facques <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexisfacques/Node-Apriori/issues"
},
"homepage": "https://github.com/alexisfacques/Node-Apriori#readme",
"devDependencies": {
"@types/node": "^8.5.2",
"typescript": "^2.6.2"
},
"dependencies": {
"events": "^1.1.1"
}
}