forked from crabbly/Print.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.7 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.7 KB
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
56
57
58
59
{
"name": "print-js",
"homepage": "http://printjs.crabbly.com",
"description": "A tiny javascript library to help printing from the web.",
"version": "1.6.1",
"main": "dist/print.js",
"types": "src/index.d.ts",
"repository": "https://github.com/crabbly/Print.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/preset-env": "7.24.3",
"babel-loader": "9.1.3",
"coveralls": "3.1.1",
"css-loader": "6.10.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"jasmine-core": "5.1.2",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"mini-css-extract-plugin": "2.8.1",
"node-sass": "9.0.0",
"sass-loader": "14.1.1",
"standard": "17.1.0",
"terser-webpack-plugin": "5.3.10",
"webpack": "5.91.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"scripts": {
"test": "standard && karma start",
"dev": "webpack --mode development --progress --devtool source-map",
"watch": "webpack --mode development --watch --progress",
"production": "webpack --mode production --progress",
"coverage": "open coverage/lcov-report/index.html",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"start": "webpack-dev-server",
"standard:fix": "standard --fix"
},
"author": "Rodrigo Vieira <rodrigo@crabbly.com>",
"standard": {
"ignore": [
"/dist/print.js"
],
"env": {
"browser": true,
"jasmine": true
}
},
"keywords": [
"printjs",
"print.js",
"print-js"
]
}