-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "gitignore-generator",
"version": "1.0.0",
"description": "An attempt at making a command line app in NodeJS that generates a .gitignore file",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && babel src -d dist --source-maps",
"start": "node dist/index.js",
"test": "mocha --require @babel/register --exit",
"lint": "eslint ."
},
"keywords": [
"node",
".gitignore",
"command-line"
],
"preferGlobal": true,
"bin": "./dist/index.js",
"author": "Gian Carlo I. Gilos",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"prettier": "^1.14.2"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.18.0",
"node-fetch": "^2.2.0",
"ramda": "^0.25.0",
"rxjs": "^6.3.2",
"rxjs-compat": "^6.3.2"
}
}