-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.34 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.34 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "postmessage-transferable-stream",
"version": "1.0.0",
"description": "Wrapper for implementation of transferable stream in postMessage",
"license": "MIT",
"author": {
"name": "Gabirieli Lalasava",
"email": "gabe@fijiwebdesign.com",
"url": "https://seedess.com"
},
"scripts": {
"audit": "source-map-explorer public/dist/prod.bundle.js",
"clear": "rm -rf public/dist/",
"clear:all": "rm -rf node_modules/ && npm run clear",
"count": "find src -type f | xargs wc -l | sort -r",
"count:build": "find public/dist -type f | xargs wc -l | sort -r",
"example": "webpack-dev-server --config webpack/webpack.config.eg.js",
"development": "webpack-dev-server --config webpack/webpack.config.dev.js",
"build": "NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"watch": "npm run development",
"start": "npm run development",
"test": "cypress open"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.7.2",
"@cypress/webpack-preprocessor": "^4.1.1",
"@types/jest": "^24.0.23",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"cypress": "^3.6.1",
"es6-promise": "^4.2.8",
"html-webpack-plugin": "^3.2.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.0",
"source-map-explorer": "^1.8.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.0.4",
"typescript": "^3.6.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"whatwg-fetch": "^3.0.0"
},
"keywords": [
"boilerplate",
"browser",
"webpack",
"node",
"typescript",
"javascript",
"ES6",
"ES5"
],
"repository": {
"type": "git",
"url": "https://github.com/Seedess/postmessage-transferable-stream"
},
"dependencies": {
"@types/node": "^12.7.3",
"debug": "^4.1.1"
}
}