-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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": "ml-arrayxy-uniquex",
"version": "0.0.2",
"description": "Function to sum the y values if the x values are equals. The x array has to be ordered.",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src test",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-mocha && npm run eslint",
"test-mocha": "mocha --require should --reporter mocha-better-spec-reporter"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/arrayxy-uniquex.git"
},
"keywords": [
"machine",
"learning",
"data",
"mining",
"datamining"
],
"author": "lpatiny <gb252243>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/arrayxy-uniquex/issues"
},
"tonicExampleFilename": "./tonic.js",
"homepage": "https://github.com/mljs/arrayxy-uniquex#readme",
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-cheminfo": "^1.1.2",
"eslint-plugin-no-only-tests": "^1.1.0",
"mocha": "^3.0.2",
"mocha-better-spec-reporter": "^3.0.2",
"should": "^11.1.0"
}
}