-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 KB
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
{
"name": "brain-f-games",
"version": "1.1.0",
"description": " ",
"main": "",
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src -d dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"bin": {
"brain-games": "./dist/bin/brain-games.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oustinger/frontend-project-lvl1.git"
},
"keywords": [
"brain-games",
"games",
"brain",
"hexlet"
],
"author": "Oustinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/Oustinger/frontend-project-lvl1/issues"
},
"homepage": "https://github.com/Oustinger/frontend-project-lvl1#readme",
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"eslint": "^6.5.1",
"jest": "^29.3.1",
"source-map-support": "^0.5.13"
},
"files": [
"dist",
"bin",
"lib"
]
}