forked from all-contributors/ac-learn
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.22 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ac-learn",
"version": "1.0.1",
"description": "ML platform for All Contributors",
"main": "dist/index.js",
"repository": "https://github.com/all-contributors/ac-learn.git",
"files": [
"dist"
],
"engines": {
"node": ">=8"
},
"bugs": {
"url": "https://github.com/all-contributors/ac-learn/issues"
},
"homepage": "https://github.com/all-contributors/ac-learn#readme",
"author": "Maximilian Berkmann <maxieberkmann@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"validate": "kcd-scripts validate",
"commit": "git-cz",
"doc:lint": "documentation lint src/index.js",
"doc:gen": "documentation readme src/index.js -s Documentation",
"doc": "yarn doc:lint && yarn doc:gen",
"prepare": "snyk protect",
"open": "concurrently \"serve -d .\" \"xdg-open http://localhost:5000/public/\""
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"keywords": [
"all",
"contributors",
"ml",
"learn",
"all-contributors"
],
"dependencies": {
"@babel/runtime": "^7.11.2",
"camel-case": "^4.1.1",
"chalk": "^4.1.0",
"clui": "^0.3.6",
"easy-table": "^1.1.1",
"javascript-lemmatizer": "0.0.2",
"limdu": "^0.9.4",
"nclr": "^2.2.5",
"serialization": "^0.2.0",
"tvt-split": "^1.0.3"
},
"devDependencies": {
"anychart-nodejs": "^1.3.8",
"codecov": "^3.7.2",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "^3.2.0",
"documentation": "^13.0.2",
"eslint-config-kentcdodds": "^14.14.2",
"git-cz": "^4.7.0",
"jsdom": "^16.4.0",
"kcd-scripts": "^6.2.4",
"plotly.js-dist": "^1.54.7",
"semantic-release": "^17.1.1",
"snyk": "^1.377.1"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"camelcase": "off",
"no-process-exit": "off",
"import/extensions": "off",
"func-names": "off",
"consistent-return": "off"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}