-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "blockmap",
"version": "4.0.3",
"description": "Tizen's block map format",
"license": "MIT",
"author": "Jonas Hermsmeier <jhermsmeier@gmail.com> (https://jhermsmeier.de)",
"keywords": [
"tizen",
"bmap",
"block",
"map",
"blockmap"
],
"files": "js/*",
"main": "js/index.js",
"dependencies": {
"debug": "^4.1.1",
"tslib": "^2.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@balena/lint": "^5.3.0",
"@types/debug": "^4.1.5",
"@types/domhandler": "^2.4.1",
"@types/htmlparser2": "^3.10.1",
"@types/mocha": "^8.0.0",
"@types/node": "^6.14.10",
"@types/xml": "^1.0.5",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^4.1.2"
},
"homepage": "https://github.com/balena-io-modules/blockmap",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-modules/blockmap.git"
},
"bugs": {
"url": "https://github.com/balena-io-modules/blockmap/issues"
},
"scripts": {
"build": "tsc",
"prettier": "balena-lint --typescript --fix benchmark lib test",
"lint": "balena-lint --typescript benchmark lib test",
"test": "mocha -r ts-node/register test/*.ts",
"benchmark": "ts-node benchmark/blockmap.ts",
"doc": "typedoc --readme none --theme markdown --mode file --out doc lib/index.ts",
"prepublishOnly": "npm run lint && npm run test && npm run benchmark && npm run build && npm run doc"
}
}