-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "ai-ml.club",
"version": "0.2.19",
"description": "AI ML Club",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"fit-image": "./scripts/fit-image.sh",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md && npm run lint:fn",
"lint:es": "eslint 'src/**/*.ts' 'tests/**/*.spec.ts' --ignore-pattern tests/fixtures/",
"lint:ts": "tsc --noEmit",
"lint:md": "markdownlint README.md 'docs/**/*.md'",
"lint:fn": "file-name-linter .file-name-linter.json",
"test": "npm run lint && npm run test:unit",
"test:unit": "ts-node --files ./node_modules/.bin/blue-tape 'src/**/*.spec.ts' 'tests/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BUPT/ai-ml.club.git"
},
"keywords": [
"AI",
"ML",
"Club",
"AMC"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BUPT/ai-ml.club/issues"
},
"homepage": "https://github.com/BUPT/ai-ml.club#readme",
"devDependencies": {
"@chatie/eslint-config": "^0.6.13",
"@chatie/tsconfig": "^0.6.1",
"@types/glob": "^7.1.1",
"@types/image-size": "^0.7.0",
"file-box": "^0.8.27",
"glob": "^7.1.4",
"image-size": "^0.7.4",
"is-pr": "^1.1.0",
"probe-image-size": "^4.0.0",
"tstest": "^0.4.2"
},
"dependencies": {}
}