-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
{
"name": "mindgameshexlet",
"version": "1.0.25",
"description": "Mind Games on JS",
"main": "dist/bin/index.js",
"bin": {
"brain-gcd": "dist/bin/brain-gcd.js",
"brain-even": "dist/bin/brain-even.js",
"brain-calc": "dist/bin/brain-calc.js",
"brain-balance": "dist/bin/brain-balance.js",
"brain-progression": "dist/bin/brain-progression.js",
"brain-prime": "dist/bin/brain-prime.js"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": "8"
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build",
"eslint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/landrail8/project-lvl1-s212.git"
},
"author": "madgambler",
"license": "ISC",
"bugs": {
"url": "https://github.com/landrail8/project-lvl1-s212/issues"
},
"homepage": "https://github.com/landrail8/project-lvl1-s212#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-eslint": "^8.0.3",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-jest": "^21.4.2",
"eslint-plugin-import": "^2.8.0"
},
"dependencies": {
"readline-sync": "^1.4.7"
},
"config": {
"unsafe-perm": true
}
}