-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"type": "module",
"devDependencies": {
"docdash": "^1.2.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-only-warn": "^1.0.2",
"jsdoc": "^3.6.6",
"minami": "^1.2.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2"
},
"dependencies": {
"chai": "^4.2.0",
"eslint-plugin-only-warn": "^1.0.2",
"mocha": "^8.2.1"
},
"name": "flick",
"description": "![GitHub](https://img.shields.io/github/license/jordanpramos/Flick)",
"version": "1.0.0",
"main": "game.js",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint test/*.js ./game.js",
"lint-fix": "./node_modules/.bin/eslint test/*.js ./game.js --fix",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"build-doc": "./node_modules/.bin/jsdoc -c jsdoc.json"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jordanpramos/Flick.git"
},
"author": "Jordan Ramos",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jordanpramos/Flick/issues"
},
"homepage": "https://github.com/jordanpramos/Flick#readme"
}