forked from kobalab/Majiang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.36 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.36 KB
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
{
"name": "majiang",
"version": "1.6.10",
"description": "HTML5 + JavaScript で動作する麻雀アプリ「電脳麻将」",
"main": "src/js/majiang.js",
"private": true,
"scripts": {
"build:html": "pug -o www -P src/html/page/",
"build:js": "webpack --mode development --devtool inline-source-map",
"build:css": "stylus src/css/index.styl -o www/css/majiang-1.6.10.css",
"build": "npm run build:html && npm run build:css && npm run build:js",
"release": "npm run build:html && npm run build:css && webpack --mode production",
"test": "mocha -u tdd",
"test:cover": "nyc --exclude=src/js/majiang/dev --exclude=test --reporter=lcov --reporter=text npm run test -- --no-timeouts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobalab/Majiang.git"
},
"keywords": [],
"author": "Satoshi Kobayashi (https://github.com/kobalab)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kobalab/Majiang/issues"
},
"homepage": "https://github.com/kobalab/Majiang#readme",
"overrides": {
"pug": "^3.0.2"
},
"devDependencies": {
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"pug-cli": "^1.0.0-alpha6",
"stylus": "^0.55.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"jquery": "^3.6.0",
"jquery-ui": "^1.13.2"
}
}