-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.31 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
{
"name": "Generator",
"version": "0.3.0",
"description": "This project was created to simplify work with assignments in a basic web development course where server-side rendering, and thus code sharing, was not an option.",
"main": "generator.js",
"scripts": {
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krisell/Static-HTML-Generator.git"
},
"keywords": [],
"author": "Martin Krisell",
"license": "MIT",
"bugs": {
"url": "https://github.com/Krisell/Static-HTML-Generator/issues"
},
"homepage": "https://github.com/Krisell/Static-HTML-Generator#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^23.4.2",
"laravel-mix": "^2.1.11"
}
}