-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.26 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
75
76
77
78
79
80
{
"name": "battleship",
"version": "1.0.0",
"description": "This is just a fun project creating a game of battleship. Experimenting with functional programming and ES6 features.",
"main": "src/js/main.js",
"author": "Joshua Heagle",
"license": "ISC",
"scripts": {
"start": "node src/js/main.js",
"test": "jest",
"readme": "cp MAIN.md README.md && echo \"\" >> README.md && jsdoc2md src/js/*.js >> README.md",
"htmldocs": "jsdoc -R MAIN.md -r src/js/ -d docs",
"resolutions": "npx npm-force-resolutions"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.24.0",
"babel-jest": "^29.7.0",
"browser-sync": "^3.0.3",
"browserify": "^17.0.0",
"css-what": "^6.1.0",
"del": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"glob-parent": "^6.0.2",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-cache": "^1.1.3",
"gulp-cli": "^3.0.0",
"gulp-cssnano": "^2.1.3",
"gulp-eslint": "^6.0.0",
"gulp-imagemin": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-uglify-es": "^3.0.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1",
"sass": "^1.72.0",
"standard": "^17.1.0",
"trim-newlines": "^5.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.24.0",
"core-js": "^3.36.0",
"functional-helpers": "github:jheagle/functional-helpers",
"json-dom": "github:jheagle/JSON-DOM",
"npm": "^10.5.0",
"regenerator-runtime": "^0.14.1"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jheagle/battleship.git"
},
"resolutions": {
"css-what": "5.0.1",
"eslint": "7.30.0",
"glob-parent": "6.0.1",
"trim-newlines": "4.0.2"
},
"bugs": {
"url": "https://github.com/jheagle/battleship/issues"
},
"homepage": "https://github.com/jheagle/battleship#readme",
"standard": {
"env": [
"jest"
]
}
}