forked from javiermanzano/ohce-christmas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 953 Bytes
/
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
{
"name": "ohce-christmas-g",
"version": "1.1.0",
"description": "",
"main": "./src/bin/index.js",
"bin": {
"ohce": "./src/bin/index.js"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/**/*.test.js",
"test:watch": "./node_modules/mocha/bin/mocha ./test/**/*.test.js --watch",
"lint": "eslint --ext .js src",
"ohce": "node ./src/bin/index.js",
"bundle": "pkg ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/javiermanzano/ohce-christmas.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/javiermanzano/ohce-christmas/issues"
},
"homepage": "https://github.com/javiermanzano/ohce-christmas#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"mocha": "^6.2.2"
},
"dependencies": {
"inquirer": "^7.0.0"
}
}