-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "parcel-plugin-bundle-visualiser",
"version": "1.2.0",
"description": "A plugin for the parcel bundler to visualise bundle contents",
"author": "Greg Tillbrook",
"license": "MIT",
"repository": "gregtillbrook/parcel-plugin-bundle-visualiser",
"engines": {
"node": ">=6"
},
"main": "src/index.js",
"scripts": {
"start": "npm test",
"test": "npm run lint && npm run test:unit",
"lint": "node node_modules/eslint/bin/eslint.js src/*.js",
"test:unit": "node ./node_modules/jest/bin/jest.js",
"test:unit:watch": "node ./node_modules/jest/bin/jest.js --watch",
"jest:update": "./node_modules/jest/bin/jest.js -u",
"preview": "NODE_ENV=production node ./preview/index.js --visualise",
"format": "npx prettier --single-quote --trailing-comma es5 --write 'src/**/*.js'"
},
"jest": {
"testURL": "http://localhost"
},
"dependencies": {
"filesize": "^3.6.0",
"gzip-size": "^4.1.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.7.1",
"prettier": "^1.14.2"
},
"keywords": [
"parcel",
"plugin",
"bundler",
"report",
"visualise",
"visualize"
]
}