-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "marvin",
"version": "0.1.0",
"description": "The artificial intelligence afflicted with severe depression and boredom",
"keywords": [
"artificial-intelligence",
"machine-learning",
"natural-language-processing",
"neural-network"
],
"homepage": "https://github.com/ajtorres9/marvin#readme",
"bugs": "https://github.com/ajtorres9/marvin/issues",
"license": "MIT",
"contributors": [
"Andrew Torres <[email protected]> (https://andrewjtorr.es)",
"Brian Lee <[email protected]> (https://brian-dlee.surge.sh)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ajtorres9/marvin.git"
},
"scripts": {
"clean": "npm-run-all --parallel \"clean:*\"",
"clean:files": "del \"*\\.log*\"",
"clean:workspaces": "turbo run clean",
"hook:pre-commit": "lint-staged",
"lint": "npm-run-all --parallel \"lint:*\"",
"lint:files": "prettylint \"**/*.{json,md,yml}\"",
"lint:workspaces": "turbo run lint",
"postinstall": "husky install",
"test": "npm-run-all --parallel \"test:*\"",
"test:workspaces": "turbo run test"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@types/prettier": "^2.7.1",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"prettier-plugin-toml": "^0.3.1",
"prettylint": "^1.0.0",
"turbo": "^1.6.3"
},
"engines": {
"node": ">=16.17",
"yarn": ">=1.22"
},
"private": true,
"workspaces": [
"packages/*"
],
"lint-staged": {
"!(packages/**)*.{json,md,yml}": [
"prettylint --fix"
]
}
}