-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 4.25 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 4.25 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "remote-modules",
"version": "0.37.1",
"license": "MIT",
"description": "A module manager for distributed applications",
"repository": {
"type": "git",
"url": "https://github.com/bernardmcmanus/remote-modules.git"
},
"author": {
"name": "Bernard McManus",
"email": "bernard.mcmanus.iv@gmail.com",
"url": "https://github.com/bernardmcmanus"
},
"homepage": "https://github.com/bernardmcmanus/remote-modules",
"keywords": [
"javascript",
"universal",
"remote",
"module",
"import",
"dynamic"
],
"engines:": {
"node": ">=8.0.0"
},
"engineStrict": true,
"main": "dist/client/index.js",
"bin": {
"remote-modules": "dist/cli/index.js"
},
"scripts": {
"build": "yarn run build:browser && yarn run build:node",
"build:browser": "NODE_ENV=${NODE_ENV:-production} node -r @babel/register node_modules/.bin/webpack --hide-modules --progress",
"build:node": "NODE_ENV=${NODE_ENV:-production} babel src --copy-files --out-dir dist --source-maps inline",
"clean": "rimraf .nyc_output coverage dist .remote",
"coveralls": "cat coverage/lcov.info | coveralls",
"format": "prettier --write '**/*.{js,json,css,jsx,mjs}'",
"lint": "eslint .",
"prebuild": "yarn run clean",
"precommit": "lint-staged",
"prepublishOnly": "yarn run build",
"pretest": "yarn run lint && cd dev/remote-package && yarn install && cd -",
"start": "NODE_ENV=${NODE_ENV:-development} nodemon --require @babel/register ./dev/server.js",
"test": "NODE_ENV=test yarn run build && BABEL_ENV=test LOG_LVL=warn nyc yarn run unit",
"toc": "markdown-toc -i README.md && node -e 'process.exit(0)'",
"unit": "BUILD_ENV=test mocha 'test/**/*.test.js' -r @babel/register --timeout 60000 --bail"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"!*/README.md": [
"yarn run toc",
"git add"
]
},
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/code-frame": "^7.0.0",
"@babel/core": "^7.1.2",
"@babel/generator": "^7.1.2",
"@babel/parser": "^7.1.2",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-template-literals": "^7.0.0",
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.0",
"@babel/types": "^7.1.2",
"adler-32": "^1.2.0",
"agentkeepalive": "^3.3.0",
"astq": "^2.0.4",
"babel-merge": "^2.0.0",
"babel-plugin-minify-constant-folding": "^0.4.3",
"babel-plugin-minify-dead-code-elimination": "^0.4.3",
"babel-plugin-transform-define": "^1.3.0",
"big-integer": "^1.6.30",
"bunyan": "^1.8.12",
"chokidar": "^2.0.3",
"clone-deep": "^3.0.1",
"colors": "^1.3.0",
"core-js": "^2.5.7",
"css": "^2.2.3",
"deepmerge": "^2.1.0",
"glob": "^7.1.2",
"koa": "^2.3.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-router": "^7.2.1",
"less": "^2.3.1 || ^3.0.0",
"mkdirp": "^0.5.1",
"node-libs-browser": "^2.1.0",
"node-sass": "^4.9.0",
"object-hash": "^1.3.0",
"process": "^0.11.10",
"resolve": "^1.5.0",
"rimraf": "^2.6.2",
"strip-bom": "^3.0.0",
"uglify-es": "^3.3.9",
"url-search-params-polyfill": "^2.0.2",
"yargs": "^10.0.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^4.1.5",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"coveralls": "^3.0.2",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.12.0",
"fast-async": "^7.0.6",
"got": "^8.3.1",
"husky": "^0.14.3",
"jsdom": "^11.8.0",
"lint-staged": "^5.0.0",
"markdown-toc": "^1.2.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"nyc": "^12.0.2",
"prettier": "^1.7.4",
"sinon": "^6.1.5",
"string-replace-loader": "^2.1.1",
"strip-ansi": "^4.0.0",
"webpack": "^4.8.1",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-cli": "^2.1.3"
}
}