-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 904 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 904 Bytes
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
{
"name": "@bitgenics/cachebust",
"version": "0.5.0",
"description": "Simple command line utility to add hashes to static assets and replace original urls",
"main": "dist/index.js",
"repository": "git@github.com:bitgenics/cachebust.git",
"author": "Erwin van der Koogh <hello@bitgenics.io>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint src test --fix",
"clean": "rimraf dist",
"build": "npm run clean; npm run lint; babel src -d dist -s",
"dev": "npm run clean; babel src -d dist -s -w"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"prettier": "^1.7.2",
"rimraf": "^2.6.2"
},
"dependencies": {
"fs-extra": "^8.1.0",
"globby": "^7.1.1"
}
}