-
Notifications
You must be signed in to change notification settings - Fork 290
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "webpack-library-starter",
"version": "2.1.1",
"description": "Produce universal library with webpack and es6",
"main": "lib/webpack-library-starter.js",
"scripts": {
"dev": "webpack --progress --watch --env dev",
"dev-amd": "webpack --progress --watch --env dev --amd",
"build": "yarn test && webpack --env dev && webpack --env dev --amd && webpack --env build && webpack --env build --amd",
"test": "./node_modules/.bin/jest",
"test-watch": "./node_modules/.bin/jest --watch",
"repl": "node -i -e \"$(< ./lib/webpack-library-starter.js)\""
},
"repository": {
"type": "git",
"url": "https://github.com/krasimir/webpack-library-starter.git"
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs",
"jest"
],
"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": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"babel-jest": "26.6.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-transform-class-properties": "6.24.1",
"cross-env": "7.0.3",
"jest": "26.6.3",
"mocha": "^4.0.1",
"webpack": "5.11.0",
"webpack-cli": "4.2.0",
"yargs": "^10.0.3"
}
}