-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 814 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
{
"name": "fun-roulette",
"version": "1.0.0",
"description": "A fun chrome extension",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-preset-es2015": "6.16.0",
"eslint": "3.7.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"pre-commit": "^1.1.3"
},
"scripts": {
"build": "babel src -d lib",
"lint": "eslint src"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AHB/fun-roulette.git"
},
"author": "AHB",
"license": "ISC",
"bugs": {
"url": "https://github.com/AHB/fun-roulette/issues"
},
"homepage": "https://github.com/AHB/fun-roulette#readme"
}