-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 921 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 921 Bytes
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
{
"name": "edge-ml",
"version": "4.0.1",
"description": "Data collection tool for edge-ml (https://github.com/edge-ml)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": {
"dist/index.js": "dist/index.browser.js",
"dist/index.esm.js": "dist/index.browser.esm.js"
},
"scripts": {
"test": "jest test --coverage",
"build": "rollup -c",
"vendor:edge-fel": "make edge-fel",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"husky": "^7.0.4",
"jest": "^28.0.3",
"rollup": "^2.75.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-polyfill-node": "^0.10.0"
}
}