-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "iotdatamodel",
"type": "module",
"version": "8.1.0",
"description": "Generic data model for Internet of Things",
"engines": {
"node": ">=14.17.0"
},
"source": "index.mjs",
"main": "dist/iotdm.cjs",
"module": "dist/iotdm.esm.js",
"umd:main": "dist/iotdm.umd.js",
"unpkg": "dist/iotdm.umd.js",
"exports": {
"require": "./dist/iotdm.cjs",
"import": "./dist/iotdm.modern.js",
"umd": "./dist/iotdm.umd.js"
},
"scripts": {
"test": "node test.mjs",
"postversion": "node --experimental-json-modules versionexport.js",
"build": "microbundle --entry index.mjs --name iotdm --no-sourcemap --generateTypes false",
"prepublishOnly": "npm run clean && npm run build",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dargolith/iotdatamodel.git"
},
"keywords": [
"datamodel",
"json",
"schema",
"iot"
],
"author": "Jesper Ahlberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/dargolith/iotdatamodel/issues"
},
"homepage": "https://github.com/dargolith/iotdatamodel#readme",
"devDependencies": {
"microbundle": "^0.15.0",
"replace": "^1.2.1",
"rimraf": "^3.0.2"
}
}