-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.38 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
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
91
92
93
94
{
"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 <[email protected]>",
"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.2",
"chalk": "^4.1.0",
"clui": "^0.3.6",
"easy-table": "^1.2.0",
"javascript-lemmatizer": "0.0.2",
"limdu": "^1.0.0",
"nclr": "^2.2.5",
"serialization": "^0.2.0",
"tvt-split": "^1.0.3"
},
"devDependencies": {
"@snyk/protect": "^1.1159.0",
"anychart-nodejs": "^1.3.8",
"codecov": "^3.8.3",
"concurrently": "^8.0.1",
"cz-conventional-changelog": "^3.2.0",
"documentation": "^13.0.2",
"eslint-config-kentcdodds": "^20.5.0",
"git-cz": "^4.9.0",
"jsdom": "^22.0.0",
"kcd-scripts": "^6.2.4",
"plotly.js-dist": "^1.54.7",
"semantic-release": "^19.0.3"
},
"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",
"jest/no-done-callback": "off",
"jest/no-conditional-expect": "off",
"jest/no-try-expect": "off",
"jest/valid-describe": "off"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}