This repository was archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.91 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "es6-esm-boilerplate",
"version": "1.1.0",
"description": "Build ES modules from ES6 source code",
"main": "dist/my-module.esm.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"mod:compat": "webpack --mode production --env mod:compat",
"min:compat": "webpack --mode production --env min:compat",
"mod": "webpack --mode production --env mod",
"min": "webpack --mode production --env min",
"build": "npm run mod && npm run min && npm run mod:compat && npm run min:compat",
"dist": "npm run build && rm -rf ./dist && cp -r ./lib ./dist",
"dev": "webpack --mode development --progress --colors --watch --env mod:compat",
"test": "mocha --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/w3reality/es6-esm-boilerplate.git"
},
"keywords": [
"es6",
"esm",
"boilerplate"
],
"author": "j-devel",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3reality/es6-esm-boilerplate/issues"
},
"homepage": "https://github.com/w3reality/es6-esm-boilerplate",
"dependencies": {},
"devDependencies": {
"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",
"chai": "^4.1.2",
"eslint": "^6.2.2",
"eslint-loader": "^2.1.0",
"lodash": "^4.17.14",
"mocha": "^6.1.4",
"terser-webpack-plugin": "^2.2.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.0",
"webpack-var2esm-plugin": "^1.2.1",
"yargs": "^13.2.4"
}
}