-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
48
{
"name": "project-lvl1-s69-vitaliyti",
"version": "0.9.2",
"description": "Brain game",
"main": "index.js",
"bin": {
"brain-games": "dist/bin/brain-games.js",
"brain-even": "dist/bin/brain-even.js",
"brain-calc": "dist/bin/brain-calc.js",
"brain-gcd": "dist/bin/brain-gcd.js",
"brain-balance": "dist/bin/brain-balance.js",
"brain-progression": "dist/bin/brain-progression.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel-node": "babel-node",
"eslint": "eslint",
"clean":"rm -r dist/*",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viprogramm/project-lvl1-s69.git"
},
"keywords": [
"braingame"
],
"author": "Vitaliy Ti",
"license": "ISC",
"bugs": {
"url": "https://github.com/viprogramm/project-lvl1-s69/issues"
},
"homepage": "https://github.com/viprogramm/project-lvl1-s69#readme",
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"babel-eslint": "*"
},
"dependencies": {
"readline-sync": "^1.4.6"
}
}