-
Notifications
You must be signed in to change notification settings - Fork 666
/
package.json
42 lines (42 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
{
"name": "js-adagrams",
"version": "1.0.0",
"description": "JavaScript version of the Adagrams project",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "npx eslint",
"coverage": "open coverage/lcov-report/index.html",
"demo-game": "babel-node src/demo.js"
},
"repository": {
"type": "git",
"url": "git://github.com/AdaGold/js-adagrams.git"
},
"author": "Ada Developers Academy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdaGold/js-adagrams/issues"
},
"homepage": "https://github.com/AdaGold/js-adagrams#readme",
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/node": "^7.25.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.8",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"babel-core": "^6.26.3",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.11.0",
"jest": "^29.7.0",
"regenerator-runtime": "^0.14.1"
},
"dependencies": {
"core-js": "^3.38.1",
"vorpal": "^1.12.0"
}
}