-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
32 lines (32 loc) · 1022 Bytes
/
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": "moulinette-core",
"version": "1.0.0",
"description": "Moulinette provides tools to bring together creators and dungeon masters.",
"main": "src/moulinette-main.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build:js": "webpack",
"build-dev:js": "webpack --config webpack.config.dev.js",
"build:css": "cleancss -o dist/core.min.css src/moulinette-core.css",
"build-dev:css": "cleancss --format 'beautify' -o dist/core.min.css src/moulinette-core.css",
"build": "npm run build:js && npm run build:css",
"build-dev": "npm run build-dev:js && npm run build-dev:css",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch src --exec 'npm run build'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"clean-css-cli": "^5.6.3",
"nodemon": "^3.1.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"nodemonConfig": {
"ext": "js,css"
}
}