-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.12 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
72
73
{
"name": "pu-common",
"version": "0.22.8",
"description": "Produce universal library with webpack and es6",
"main": "lib/library.js",
"scripts": {
"build": "rm -rf ./lib && webpack --env dev && webpack --env build && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js",
"release": "release-it minor",
"release-patch": "release-it patch"
},
"repository": {
"type": "git",
"url": "https://github.com/krasimir/webpack-library-starter.git"
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs"
],
"author": "Krasimir Tsonev",
"license": "MIT",
"bugs": {
"url": "https://github.com/krasimir/webpack-library-starter/issues"
},
"homepage": "https://github.com/krasimir/webpack-library-starter",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.18.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"nodemon-webpack-plugin": "^0.1.6",
"release-it": "^7.6.3",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0",
"yargs": "^10.0.3"
},
"dependencies": {
"@bugsnag/js": "^5.2.0",
"@bugsnag/plugin-express": "^6.0.0-alpha.1",
"@google-cloud/logging": "^1.1.4",
"@sendgrid/mail": "^6.3.1",
"async-lock": "^1.1.1",
"aws-sdk": "^2.198.0",
"blind": "^1.0.0",
"connect": "^3.6.6",
"jsonwebtoken": "^8.1.1",
"mathjs": "^3.20.2",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"pmx": "^1.5.6",
"redis": "^2.8.0",
"stripe": "^5.4.0"
}
}