-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "wink-helpers",
"version": "2.0.0",
"description": "Functions for cross validation, shuffle, cartesian product and more",
"keywords": [
"Array",
"Object",
"String",
"Helper",
"Cartesian Product",
"Frequency Table",
"Validate",
"Validation",
"Sort",
"Pluck",
"Shuffle",
"Random Shuffle",
"Cross Validation",
"Machine Learning"
],
"main": "src/wink-helpers.js",
"scripts": {
"pretest": "npm run lint",
"test": "istanbul cover _mocha ./test/",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"docs": "docco -o ./docs/ ./src/*.js",
"lint": "eslint ./src/*.js ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-helpers.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkjs/wink-helpers/issues"
},
"homepage": "http://winkjs.org/",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"docco": "^0.8.0",
"eslint": "^5.8.0",
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.9.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
},
"runkitExampleFilename": "runkit/example.js"
}