-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.22 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
50
51
{
"name": "apriori",
"version": "1.0.7",
"description": "Apriori Algorithm implementation in TypeScript|JavaScript",
"main": "apriori.min.js",
"repository": {
"type": "git",
"url": "git://github.com/seratch/apriori.js.git"
},
"keywords": [
"Apriori Algorithm",
"Data Mining"
],
"author": "Kazuhiro Sera <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"test": "grunt test"
},
"files": [
"apriori.ts",
"apriori.js",
"apriori.js.map",
"apriori.min.js",
"LICENSE.txt"
],
"bugs": {
"url": "https://github.com/seratch/apriori.js/issues"
},
"homepage": "https://github.com/seratch/apriori.js",
"devDependencies": {
"chai": "~1.9.1",
"grunt": "~0.4.5",
"grunt-typescript": "~0.3.7",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-connect": "~0.8.0",
"grunt-mocha-phantomjs": "~0.5.0",
"grunt-mocha-test": "~0.11.0",
"grunt-open": "~0.2.3",
"grunt-umd": "~1.7.4",
"jshint-stylish": "~0.2.0",
"load-grunt-tasks": "~0.6.0",
"mocha": "~1.20.1"
}
}