This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
59 lines (59 loc) · 1.69 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
{
"name": "powerai-vision-object-detection",
"description": "Use PowerAI Vision for Object Detection.",
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/powerai-vision-object-detection.git"
},
"keywords": [
"PowerAI"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IBM/powerai-vision-object-detection/issues"
},
"homepage": "https://github.com/IBM/powerai-vision-object-detection#readme",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "^11.1.0",
"istanbul": "^0.4.5",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"markdownlint-cli": "^0.30.0",
"mocha": "^9.1.3",
"remark-cli": "^10.0.1",
"remark-lint": "^9.1.1",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-validate-links": "^11.0.2",
"sinon": "^12.0.1",
"sinon-test": "^3.1.1"
},
"scripts": {
"start": "node app.js",
"markdownlint": "./node_modules/.bin/markdownlint README.md",
"lint-md": "./node_modules/.bin/remark -f --ignore-pattern *ja.md .",
"lint": "npm run lint:javascript",
"eslint": "eslint *.js js test",
"lint:javascript": "eslint . --ext js,html --ignore-path .gitignore",
"test": "npm run markdownlint && npm run lint-md && npm run unit && npm run eslint",
"unit": "istanbul cover _mocha -V test/unit -- -R spec"
},
"remarkConfig": {
"plugins": [
"remark-validate-links",
"remark-lint-no-dead-urls"
]
},
"dependencies": {
"dotenv": "^8.0.0",
"express": "^4.17.1",
"handlebars": "^4.1.2",
"js-yaml": "^3.13.1",
"request": "^2.88.0"
},
"engines": {
"node": ">=10.0.0"
}
}