-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.19 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
53
{
"name": "datasheet",
"version": "1.4.0",
"description": "Production quality Datasheet generator using Web technologies.",
"main": "lib/",
"directories": {
"test": "test"
},
"scripts": {
"test": "eslint lib/*.js",
"prepublish": "npm run test"
},
"bin": {
"datasheet": "bin/cli.js"
},
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/datasheet.git"
},
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavedrom/datasheet/issues"
},
"homepage": "https://github.com/wavedrom/datasheet#readme",
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"fs-extra": "^11.2.0",
"mocha": "^10.6.0",
"nyc": "^17.0.0"
},
"dependencies": {
"asciidoctor": "^3.0.4",
"browserify": "^17.0.0",
"highlight.js": "^11.10.0",
"lodash.range": "^3.2.0",
"onml": "^2.1.0",
"pdf-lib": "^1.16.0",
"pdfjs-dist": "4.4.168",
"puppeteer": "^22.13.1",
"wavedrom": "^3.5.0",
"yargs": "^17.0.1"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}