-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.33 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
48
49
{
"name": "@tableflip/react-dropdown",
"version": "1.3.0",
"description": "A React dropdown menu with a fancy menu arrow and no dependencies",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf docs/* lib/*",
"test": "standard src/**/*.js",
"start": "parcel example/index.html -d docs",
"prepublish": "npm run build",
"build": "run-s clean build:*",
"build:js": "babel src/index.js -d lib",
"build:docs": "parcel build example/index.html -d docs --public-url ./"
},
"author": "olizilla <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"standard": "^12.0.1",
"tachyons": "^4.11.1"
},
"standard": {
"parser": "babel-eslint"
},
"dependencies": {},
"directories": {
"doc": "docs",
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/react-dropdown.git"
},
"bugs": {
"url": "https://github.com/tableflip/react-dropdown/issues"
},
"homepage": "https://github.com/tableflip/react-dropdown#readme"
}