-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 820 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 820 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
{
"name": "fierier",
"version": "1.0.0",
"description": "guy fieri",
"bin": "lib/cli.js",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib"
],
"keywords": [
"guy",
"fieri"
],
"author": "Lucas Azzola <@azz>",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint .",
"test": "jest --runInBand"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.0.0-beta.32",
"@babel/core": "7.0.0-beta.32",
"@babel/preset-env": "7.0.0-beta.32",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^21.2.1",
"prettier": "^1.8.2"
}
}