-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "static-worker",
"version": "0.0.4",
"description": "A utility package for building Cloudflare workers",
"keywords": [
"static",
"worker",
"cloudflare"
],
"main": "dist/index.js",
"repository": "git@github.com:manatarms/static-worker.git",
"bugs": "https://github.com/manatarms/static-worker/issues",
"homepage": "https://github.com/manatarms/static-worker#readme",
"author": "Sachin Fernandes <fernandes.sachin@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack",
"build-publish": "yarn build && yarn publish",
"lint": "./node_modules/.bin/eslint ./src/*.js ./__tests__/*.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"eslint": "^5.12.0",
"eslint-plugin-jest": "^22.1.3",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.6.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"dependencies": {}
}