-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "logic-playground",
"version": "1.0.0",
"description": "A logic-gate simulation playground",
"main": "index.js",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"mariadb": "^2.0.0-alpha",
"mkdirp": "^0.5.1",
"uuid": "^3.3.2",
"webpack": "^4.20.2"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"sinon": "^6.3.4",
"webpack-cli": "^3.1.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha $(find test -name '*.js')",
"build": "webpack --mode development --entry ./public/js/lpg/core.js --output ./public/dist/bundle.js",
"dev": "webpack --mode development --watch",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djs5008/logic-playground.git"
},
"author": "Dan Schmitt (djs5008)",
"license": "ISC",
"bugs": {
"url": "https://github.com/djs5008/logic-playground/issues"
},
"homepage": "https://github.com/djs5008/logic-playground#readme"
}