-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (48 loc) · 1.08 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
{
"name": "mimoxi",
"version": "1.0.0",
"description": "A musical memory game",
"private": true,
"scripts": {
"test": "jest",
"lint": "standard ./src",
"format": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmadisonturner/mimoxi.git"
},
"author": "Madison Turner",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/hmadisonturner/mimoxi/issues"
},
"homepage": "https://github.com/hmadisonturner/mimoxi#readme",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"jest": "^26.6.3",
"standard": "^16.0.3",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"standard": {
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"./src/*.js"
]
},
"babel": {
"presets": [["@babel/preset-env", {"modules": false}]],
"env": {
"test": {
"plugins": ["@babel/plugin-transform-modules-commonjs"]
}
}
},
"webpack": {
}
}