forked from algorandfoundation/technical-adoption-committee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 678 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "algorand-tech-radar",
"version": "2022.5.0",
"description": "Visualizing our technology choices",
"homepage": "https://github.com/algorandfoundation/technical-adoption-committee#readme",
"repository": "https://github.com/algorandfoundation/technical-adoption-committee.git",
"license": "MIT",
"directories": {
"doc": "docs"
},
"devDependencies": {
"browser-sync": "^2.29.3",
"eslint": "^8.52.0",
"eslint-plugin-html": "^7.1.0",
"socket.io": "^4.7.2"
},
"scripts": {
"start": "browser-sync . -w",
"lint": "npm run lint:js && npm run lint:html",
"lint:js": "eslint ./*.js",
"lint:html": "eslint ./*.html"
}
}