-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 1.91 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 1.91 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "recken",
"version": "0.0.1",
"description": "A proof of concept recommendation engine that produces a list of top-k similar items (given an item) on demand.",
"main": "lib/index.js",
"bin": "bin/cli.js",
"scripts": {
"lint": "make lint"
},
"author": "Zain ul Abideen",
"dependencies": {
"JSONStream": "^1.3.1",
"babel-core": "^6.10.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.10.4",
"babel-register": "^6.9.0",
"command-line-commands": "^2.0.0",
"command-line-tool": "^0.7.0",
"command-line-usage": "^4.0.0",
"config": "^1.19.0",
"datalib-sketch": "^1.0.2",
"event-stream": "^3.3.4",
"invariant": "^2.2.1",
"js-yaml": "^3.5.5",
"jsonfile": "^2.4.0",
"lodash": "^4.8.2",
"stream-progressbar": "^1.0.2",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^2.5.3",
"eslint-plugin-babel": "^3.1.0",
"standard": "^6.0.8"
},
"babel": {
"plugins": [
"transform-async-to-generator",
"transform-class-properties",
"transform-es2015-destructuring",
"transform-es2015-modules-commonjs",
"transform-function-bind",
"transform-object-rest-spread"
],
"env": {
"test": {
"plugins": [
"rewire"
]
}
}
},
"standard": {
"parser": "babel-eslint",
"global": [
"describe",
"it",
"beforeEach",
"afterEach",
"before",
"after"
],
"plugins": [
"babel"
],
"rules": {
"arrow-parens": 0,
"babel/arrow-parens": 0
}
}
}