-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mr-flap",
"version": "1.3.0",
"description": "Game `Mr Flap` written in javascript",
"main": "dist/mrflap.min.js",
"files": [
"dist",
"src"
],
"scripts": {
"all": "run-s test",
"test": "run-s lint test:unit",
"test:unit": "gulp test",
"lint": "eslint .",
"gulp:default": "gulp default",
"gulp:dev": "gulp dev",
"dev": "run-s gulp:default gulp:dev",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinussilvestrus/mr-flap-js.git"
},
"author": "pinussilvestrus",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinussilvestrus/mr-flap-js/issues"
},
"homepage": "https://github.com/pinussilvestrus/mr-flap-js#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"chai": "^4.3.7",
"del": "^6.1.1",
"each-props": "^3.0.0",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-open": "^3.0.1",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-uglifycss": "^1.1.0",
"karma": "^6.4.2",
"karma-babel-preprocessor": "^8.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-html": "^1.0.5",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^2.0.1",
"karma-requirejs": "^1.1.0",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "0.0.36",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"pump": "^3.0.0",
"requirejs": "^2.3.6",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0",
"uninstall": "0.0.0"
},
"dependencies": {
"jquery": "^3.7.0"
}
}