-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
53
{
"name": "YatzyScoreboard",
"version": "2.8.4",
"description": "Keep track of your Yatzy game scores in the browser.",
"main": "index.html",
"config": {
"browserify_args": "js/app.js -o js/build/app.js -t [ babelify ]",
"eslint_args": "js"
},
"scripts": {
"build": "mkdir -p js/build && npm run bundle",
"bundle": "browserify $npm_package_config_browserify_args -g uglifyify",
"lint": "eslint $npm_package_config_eslint_args",
"lint-watch": "esw -w $npm_package_config_eslint_args",
"server": "http-server -p 8000",
"start": "npm install && npm run build && npm run server",
"test": "npm run lint",
"watch": "watchify $npm_package_config_browserify_args -g uglifyify -v",
"watch-debug": "watchify $npm_package_config_browserify_args -v -d"
},
"repository": {
"type": "git",
"url": "https://github.com/peruukki/YatzyScoreboard.git"
},
"keywords": [
"Yatzy",
"scoreboard",
"RxJS"
],
"author": "Harri Lehtola <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peruukki/YatzyScoreboard/issues"
},
"homepage": "https://github.com/peruukki/YatzyScoreboard",
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"eslint": "^7.16.0",
"eslint-watch": "^7.0.0",
"http-server": "^0.8.5",
"uglifyify": "^3.0.1",
"watchify": "^3.11.1"
},
"dependencies": {
"jquery": "^3.3.1",
"lodash": "^3.10.1",
"mustache": "^2.2.0",
"rx-lite": "^4.0.7"
}
}