-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 997 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 997 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
32
33
34
35
36
37
38
39
40
41
{
"name": "electroff",
"version": "0.4.1",
"description": "A cross browser, electron-less helper, for IoT projects and standalone applications",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run test",
"cjs": "ascjs --no-default esm cjs",
"test": "DEBUG=1 node test/index.js"
},
"keywords": [
"electron",
"alternative",
"cross",
"browser"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"ascjs": "^4.0.1",
"express": "^4.17.1"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"dependencies": {
"flatted": "^3.1.0",
"umeta": "^0.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/electroff.git"
},
"bugs": {
"url": "https://github.com/WebReflection/electroff/issues"
},
"homepage": "https://github.com/WebReflection/electroff#readme"
}