-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 998 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 998 Bytes
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
{
"name": "bg-graph1589",
"version": "1.4.4",
"description": "educational project, brain games",
"keywords": "brain-games",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"author": "Graph1589",
"license": "ISC",
"bin": {
"brain-even": "dist/bin/brain-even.js",
"brain-calc": "dist/bin/brain-calc.js",
"brain-progression": "dist/bin/brain-progression.js",
"brain-gcd": "dist/bin/brain-gcd.js",
"brain-prime": "dist/bin/brain-prime.js"
},
"files": [
"dist"
],
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2"
}
}