-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 843 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
{
"name": "cheesesteak",
"version": "0.0.4",
"license": "MIT",
"description": "",
"repository": "github:wiziple/cheesesteak",
"bugs": "https://github.com/wiziple/cheesesteak/issues",
"homepage": "https://github.com/wiziple/cheesesteak",
"keywords": [
"cheesesteak"
],
"author": "Daewoong Moon <[email protected]>",
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"test": "jest test --watch",
"build": "babel src --out-dir dist"
},
"bin": {
"cheesesteak": "./dist/index.js"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"eslint": "^5.1.0",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "^2.13.0",
"jest": "^23.4.0"
},
"dependencies": {
"moment": "^2.22.2"
}
}