forked from pratiksharma23/page-fragmentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "@citizensadvice/page-fragmenter",
"version": "1.0.0-rc2",
"description": "Split a HTML page into printable pages",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .js",
"start": "parcel test/index.html --dist-dir local",
"prebuild": "rm -rf dist",
"build": "npm run build:main && npm run build:auto",
"build:main": "parcel build src/index.js",
"build:auto": "parcel build src/auto.js",
"preversion": "npm run lint",
"prepublishOnly": "npm run build",
"release": "np"
},
"author": "Daniel Lewis",
"license": "ISC",
"files": [
"dist/**/*",
"styles/**/*",
"src/**/*"
],
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-playwright": "^0.2.1",
"jest": "^26.6.3",
"jest-playwright-preset": "^1.4.0",
"np": "^7.2.0",
"parcel": "^2.0.0-nightly.479",
"playwright": "^1.7.1"
}
}