forked from flexdinesh/npm-module-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.09 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
56
57
58
59
60
61
62
63
{
"name": "npm-module-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for UMD (ES6 and CommonJS) modules with Webpack",
"module": "./lib",
"main": "./lib",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require @babel/register --require @babel/core --recursive",
"test:watch": "npm test -- --watch",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test",
"build": "webpack --mode=production --no-progress --hide-modules --config=webpack.config.js",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andreekeberg/npm-module-boilerplate.git"
},
"keywords": [],
"author": "André Ekeberg <hello@andreekeberg.se> (https://andreekeberg.se)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreekeberg/npm-module-boilerplate/issues"
},
"homepage": "https://github.com/andreekeberg/npm-module-boilerplate",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-modules-amd": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.10.4",
"@babel/runtime": "^7.6.2",
"@babel/runtime-corejs3": "^7.6.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0",
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"core-js": "^3.2.1",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-node": "^11.1.0",
"mocha": "^6.1.3",
"nyc": "^13.3.0",
"rimraf": "^2.6.2",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
}
}