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