-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
39 lines (39 loc) · 969 Bytes
/
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
{
"name": "gatsby-plugin-asset-path",
"version": "3.0.4",
"description": "Gatsby plugin that copies JS and CSS files and static folder to a custom folder",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir .",
"test": "mocha",
"test:watch": "mocha --watch",
"test:html": "nyc --reporter=html mocha"
},
"author": "Ryan Chung <[email protected]>",
"license": "mit",
"repository": {
"type": "git",
"url": "git+https://github.com/madecomfy/gatsby-plugin-asset-path.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"assets",
"subdirectory"
],
"dependencies": {
"fs-extra": "^7.0.0"
},
"peerDependencies": {
"gatsby": ">2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"mocha": "^8.2.1",
"mock-fs": "^4.13.0",
"nyc": "^15.1.0"
}
}