-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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
54
55
{
"name": "pdfmake-utils",
"version": "0.5.3",
"description": "A project template for authoring and publishing JavaScript libraries",
"repository": "blikblum/pdfmake-utils",
"author": "Luiz Américo Pereira Câmara",
"contributors": [
"Luiz Américo Pereira Câmara"
],
"license": "MIT",
"keywords": [],
"main": "dist/pdfmake-utils.js",
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.6",
"@storybook/addon-actions": "^7.0.0-alpha.52",
"@storybook/addon-essentials": "^7.0.0-alpha.52",
"@storybook/addon-links": "^7.0.0-alpha.52",
"@storybook/web-components": "^7.0.0-alpha.52",
"@storybook/web-components-webpack5": "7.0.0-alpha.52",
"babel-jest": "^27.2.0",
"babel-loader": "^8.3.0",
"del": "^6.0.0",
"jest": "^27.2.0",
"lit-html": "^2.4.0",
"pdfmake-lite": "^0.1.70",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"standard": "^16.0.3",
"storybook": "7.0.0-alpha.52"
},
"scripts": {
"format": "prettier src/**/*.js --write",
"lint": "standard src test tools",
"test": "jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"build": "node tools/build",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"raw-element": "^0.4.0"
},
"files": [
"dist"
]
}