-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "webapp-manifest-plugin",
"version": "0.0.4",
"main": "lib/index.js",
"files": [
"lib",
"yarn.lock"
],
"keywords": [
"webpack",
"webapp",
"manifest",
"webapp manifest",
"manifest.json"
],
"license": "MIT",
"description": "Create a web application manifest for your PWA based on your webpack build.",
"author": "David Buchan-Swanson <[email protected]>",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0"
},
"scripts": {
"build": "babel -d lib src",
"build:watch": "yarn build -- --watch",
"prepublish": "yarn build"
},
"dependencies": {
"mime-types": "^2.1.15"
}
}