-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (34 loc) · 923 Bytes
/
package.json
File metadata and controls
35 lines (34 loc) · 923 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": "adgeek-sidebar",
"description": "Sidebar Component used in AdGeek",
"version": "0.0.13",
"author": "Samuel Amoah <sa.am@programmer.net>",
"keywords": [
"react",
"adgeek"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.20.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"tape": "^4.6.3"
},
"dependencies": {
},
"scripts": {
"prepublish": "npm run compile",
"test": "npm run compile && babel-tape-runner test/*.js",
"compile": "babel lib --out-dir dist --copy-files",
"lint": "eslint lib"
},
"main": "dist/index.js"
}